diff --git a/src/collections/Authors/Authors.ts b/src/collections/Authors/Authors.ts new file mode 100644 index 0000000..909b6d7 --- /dev/null +++ b/src/collections/Authors/Authors.ts @@ -0,0 +1,16 @@ +import type { CollectionConfig } from 'payload' + +export const Authors: CollectionConfig = { + slug: 'authors', + fields: [ + { + name: 'firstName', + type: 'text', + }, + { + name: 'lastName', + type: 'text', + required: true, + }, + ], +} diff --git a/src/collections/Books/Books.ts b/src/collections/Books/Books.ts new file mode 100644 index 0000000..42722cd --- /dev/null +++ b/src/collections/Books/Books.ts @@ -0,0 +1,15 @@ +import { CollectionConfig } from "payload"; + +export const Books: CollectionConfig = { + slug: "books", + fields: [ + { + name: "books_id", // This is from the import + type: "text", + }, + { + name: "title", + type: "text", + }, + ], +} diff --git a/src/payload-types.ts b/src/payload-types.ts index d98da0d..d3cacc9 100644 --- a/src/payload-types.ts +++ b/src/payload-types.ts @@ -6,24 +6,94 @@ * and re-run `payload generate:types` to regenerate this file. */ +/** + * Supported timezones in IANA format. + * + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "supportedTimezones". + */ +export type SupportedTimezones = + | 'Pacific/Midway' + | 'Pacific/Niue' + | 'Pacific/Honolulu' + | 'Pacific/Rarotonga' + | 'America/Anchorage' + | 'Pacific/Gambier' + | 'America/Los_Angeles' + | 'America/Tijuana' + | 'America/Denver' + | 'America/Phoenix' + | 'America/Chicago' + | 'America/Guatemala' + | 'America/New_York' + | 'America/Bogota' + | 'America/Caracas' + | 'America/Santiago' + | 'America/Buenos_Aires' + | 'America/Sao_Paulo' + | 'Atlantic/South_Georgia' + | 'Atlantic/Azores' + | 'Atlantic/Cape_Verde' + | 'Europe/London' + | 'Europe/Berlin' + | 'Africa/Lagos' + | 'Europe/Athens' + | 'Africa/Cairo' + | 'Europe/Moscow' + | 'Asia/Riyadh' + | 'Asia/Dubai' + | 'Asia/Baku' + | 'Asia/Karachi' + | 'Asia/Tashkent' + | 'Asia/Calcutta' + | 'Asia/Dhaka' + | 'Asia/Almaty' + | 'Asia/Jakarta' + | 'Asia/Bangkok' + | 'Asia/Shanghai' + | 'Asia/Singapore' + | 'Asia/Tokyo' + | 'Asia/Seoul' + | 'Australia/Brisbane' + | 'Australia/Sydney' + | 'Pacific/Guam' + | 'Pacific/Noumea' + | 'Pacific/Auckland' + | 'Pacific/Fiji'; + export interface Config { auth: { users: UserAuthOperations; }; + blocks: {}; collections: { users: User; media: Media; + 'payload-locked-documents': PayloadLockedDocument; 'payload-preferences': PayloadPreference; 'payload-migrations': PayloadMigration; }; + collectionsJoins: {}; + collectionsSelect: { + users: UsersSelect | UsersSelect; + media: MediaSelect | MediaSelect; + 'payload-locked-documents': PayloadLockedDocumentsSelect | PayloadLockedDocumentsSelect; + 'payload-preferences': PayloadPreferencesSelect | PayloadPreferencesSelect; + 'payload-migrations': PayloadMigrationsSelect | PayloadMigrationsSelect; + }; db: { - defaultIDType: string; + defaultIDType: number; }; globals: {}; + globalsSelect: {}; locale: null; user: User & { collection: 'users'; }; + jobs: { + tasks: unknown; + workflows: unknown; + }; } export interface UserAuthOperations { forgotPassword: { @@ -48,7 +118,7 @@ export interface UserAuthOperations { * via the `definition` "users". */ export interface User { - id: string; + id: number; updatedAt: string; createdAt: string; email: string; @@ -65,7 +135,7 @@ export interface User { * via the `definition` "media". */ export interface Media { - id: string; + id: number; alt: string; updatedAt: string; createdAt: string; @@ -79,15 +149,38 @@ export interface Media { focalX?: number | null; focalY?: number | null; } +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "payload-locked-documents". + */ +export interface PayloadLockedDocument { + id: number; + document?: + | ({ + relationTo: 'users'; + value: number | User; + } | null) + | ({ + relationTo: 'media'; + value: number | Media; + } | null); + globalSlug?: string | null; + user: { + relationTo: 'users'; + value: number | User; + }; + updatedAt: string; + createdAt: string; +} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "payload-preferences". */ export interface PayloadPreference { - id: string; + id: number; user: { relationTo: 'users'; - value: string | User; + value: number | User; }; key?: string | null; value?: @@ -107,12 +200,77 @@ export interface PayloadPreference { * via the `definition` "payload-migrations". */ export interface PayloadMigration { - id: string; + id: number; name?: string | null; batch?: number | null; updatedAt: string; createdAt: string; } +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "users_select". + */ +export interface UsersSelect { + updatedAt?: T; + createdAt?: T; + email?: T; + resetPasswordToken?: T; + resetPasswordExpiration?: T; + salt?: T; + hash?: T; + loginAttempts?: T; + lockUntil?: T; +} +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "media_select". + */ +export interface MediaSelect { + alt?: T; + updatedAt?: T; + createdAt?: T; + url?: T; + thumbnailURL?: T; + filename?: T; + mimeType?: T; + filesize?: T; + width?: T; + height?: T; + focalX?: T; + focalY?: T; +} +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "payload-locked-documents_select". + */ +export interface PayloadLockedDocumentsSelect { + document?: T; + globalSlug?: T; + user?: T; + updatedAt?: T; + createdAt?: T; +} +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "payload-preferences_select". + */ +export interface PayloadPreferencesSelect { + user?: T; + key?: T; + value?: T; + updatedAt?: T; + createdAt?: T; +} +/** + * This interface was referenced by `Config`'s JSON-Schema + * via the `definition` "payload-migrations_select". + */ +export interface PayloadMigrationsSelect { + name?: T; + batch?: T; + updatedAt?: T; + createdAt?: T; +} /** * This interface was referenced by `Config`'s JSON-Schema * via the `definition` "auth". diff --git a/testData.json b/testData.json new file mode 100644 index 0000000..e308c40 --- /dev/null +++ b/testData.json @@ -0,0 +1,89705 @@ +{"250435051": { + "books_id": "250435051", + "title": "Souls on Fire: Portraits and Legends of Hasidic Masters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Wiesel, Marion", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }, + { + "lf": "Wiesel, Marion", + "fl": "Marion Wiesel", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "067144171X", + "isbn": { + "0": "067144171X", + "2": "9780671441715" + }, + "asin": "067144171X", + "ean": ["067144171X"], + "publication": "Simon & Schuster (1982), Edition: Reissue, 288 pages", + "date": "1982", + "summary": "Souls on Fire: Portraits and Legends of Hasidic Masters by Elie Wiesel (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .W513" + }, + "subject": { + "0": ["Hasidim", + "Biography"], + "2": ["Hasidim", + "Legends"] + }, + "originaltitle": "C\u00e9l\u00e9bration hassidique", + "awards": ["National Jewish Book Award", + "New York Times bestseller", + "Prix Bordin (Acad\u00e9mie fran\u00e7aise)"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "213331", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.8 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.8 inches", + "weight": "0.81350574678 pounds", + "pages": "288 " +}, +"250436220": { + "books_id": "250436220", + "title": "Bialik speaks;: Words from the poet's lips clues to the man", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bialik, Hayyim Nahman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bialik, Hayyim Nahman", + "fl": "Hayyim Nahman Bialik", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BZLE8", + "publication": "Herzl Press (1969), 192 pages", + "date": "1969", + "summary": "Bialik speaks;: Words from the poet's lips clues to the man by Hayyim Nahman Bialik (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 M4813" + }, + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "20121155", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "192 p.", + "weight": "0.74 pounds", + "pages": "192 " +}, +"250436313": { + "books_id": "250436313", + "title": "Schindler's Legacy: True Stories of the List Survivors", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brecher, Elinor J.", + "primaryauthorrole": "Author", + "secondaryauthor": "Keneally, Thomas", + "secondaryauthorroles": "Afterword", + "authors": [{ + "lf": "Brecher, Elinor J.", + "fl": "Elinor J. Brecher", + "role": "Author" + }, + { + "lf": "Keneally, Thomas", + "fl": "Thomas Keneally", + "role": "Afterword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0452273536", + "isbn": { + "0": "0452273536", + "2": "9780452273535" + }, + "asin": "0452273536", + "ean": ["0452273536"], + "publication": "Plume (1995), 480 pages", + "date": "1994", + "summary": "Schindler's Legacy: True Stories of the List Survivors by Elinor J. Brecher (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .B693" + }, + "subject": [["Brn?enec (Czech Republic)", + "Ethnic relations"], + ["Holocaust survivors", + "Biography"], + ["Holocaust, Jewish (1939-1945)", + "Personal narratives"], + ["Jews", + "Persecutions", + "Czech Republic", + "Brn?enec"], + ["Jews", + "Persecutions", + "Poland"], + ["Poland", + "Ethnic relations"], + ["P?asz?ow (Concentration camp)"], + ["Schindler, Oskar, 1908-1974"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "165816", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "480 p.; 9.12 inches", + "height": "9.12 inches", + "thickness": "1.27 inches", + "length": "7.28 inches", + "dimensions": "9.12 x 7.28 x 1.27 inches", + "weight": "1.75 pounds", + "pages": "480 " +}, +"250436363": { + "books_id": "250436363", + "title": "From Text to Tradition, a History of Judaism in Second Temple and Rabbinic Times: A History of Second Temple and Rabbinic Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schiffman, Lawrence H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schiffman, Lawrence H.", + "fl": "Lawrence H. Schiffman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881253723", + "isbn": { + "0": "0881253723", + "2": "9780881253726" + }, + "asin": "0881253723", + "ean": ["0881253723"], + "publication": "Ktav Pub & Distributors Inc (1991), Edition: First Edition, 299 pages", + "date": "1991", + "summary": "From Text to Tradition, a History of Judaism in Second Temple and Rabbinic Times: A History of Second Temple and Rabbinic Judaism by Lawrence H. Schiffman (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09014"], + "wording": ["Biography And History", + "By Period", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM176 .S35" + }, + "subject": [["Judaism", + "History"], + ["Judaism", + "History", + "Post-exilic period, 586 B.C.-210 A.D"], + ["Judaism", + "History", + "Talmudic period, 10-425"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "295270", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "299 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1 inches", + "weight": "1.04940036712 pounds", + "pages": "299 " +}, +"250436392": { + "books_id": "250436392", + "title": "The Thirteenth Tribe", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Koestler, Arthur", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Koestler, Arthur", + "fl": "Arthur Koestler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0945001428", + "isbn": { + "0": "0945001428", + "2": "9780945001423" + }, + "asin": "0945001428", + "ean": ["0945001428"], + "publication": "Gsg & Assoc (1976), Edition: Original, 256 pages", + "date": "1976", + "summary": "The Thirteenth Tribe by Arthur Koestler (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.9"], + "wording": ["Baltic States [Formerly, Caucasus Generally]", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries"] + }, + "lcc": { + "code": "DK34.K45 K59" + }, + "subject": [["Khazars"]], + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "206335", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.75 inches", + "weight": "0.79 pounds", + "pages": "256 " +}, +"250436435": { + "books_id": "250436435", + "title": "When a Jew Dies: The Ethnography of a Bereaved Son", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heilman, Samuel C.", + "primaryauthorrole": "Author", + "secondaryauthor": "Heilman, Samuel", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Heilman, Samuel C.", + "fl": "Samuel C. Heilman", + "role": "Author" + }, + { + "lf": "Heilman, Samuel", + "fl": "Samuel Heilman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520219651", + "isbn": { + "0": "0520219651", + "2": "9780520219656" + }, + "asin": "0520219651", + "ean": ["0520219651"], + "publication": "University of California Press (2001), Edition: Revised ed., 271 pages", + "date": "2001", + "summary": "When a Jew Dies: The Ethnography of a Bereaved Son by Samuel C. Heilman (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM712 .H45" + }, + "subject": [["Bereavement", + "Judaism"], + ["Bereavement", + "Social aspects"], + ["Jewish mourning customs"]], + "awards": ["Koret Jewish Book Awards", + "National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "1240", + "1944", + "5686"], + "source": "amazon.com books", + "workcode": "2237046", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "271 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1.04058187664 pounds", + "pages": "271 " +}, +"250436473": { + "books_id": "250436473", + "title": "The Jew in the Lotus: A Poet's Re-Discovery of Jewish Identity in Buddhist India", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kamenetz, Rodger", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kamenetz, Rodger", + "fl": "Rodger Kamenetz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060645741", + "isbn": { + "0": "0060645741", + "2": "9780060645748" + }, + "asin": "0060645741", + "ean": ["0060645741"], + "publication": "HarperOne (1995), Edition: Reprint, 304 pages", + "date": "1995", + "summary": "The Jew in the Lotus: A Poet's Re-Discovery of Jewish Identity in Buddhist India by Rodger Kamenetz (1995)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BQ4610.J8 K36" + }, + "subject": { + "0": ["Buddhism", + "Judaism"], + "1": ["Buddhism", + "Relations", + "Judaism"], + "2": ["Buddhist converts from Judaism"], + "4": ["Dharms\u0101la (India)", + "Religious life and customs"], + "5": ["Dharms?ala (India)", + "Religious life and customs"], + "6": ["Dharms\ufffdala (India)", + "Religious life and customs"], + "7": ["Dialogue", + "Buddhism"], + "8": ["Dialogue", + "Judaism"], + "9": ["Dialogue", + "Religious aspects", + "Buddhism"], + "10": ["Dialogue", + "Religious aspects", + "Judaism"], + "11": ["Judaism", + "Buddhism"], + "12": ["Judaism", + "Relations", + "Buddhism"], + "13": ["Kamenetz, Rodger, 1950-", + "Religion"], + "14": ["Kamenetz, Rodger, 1950-", + "Travel", + "India", + "Dharms?ala"], + "15": ["Kamenetz, Rodger, 1950-", + "Travel", + "India", + "Dharms\ufffdala"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "Amazon.com", + "workcode": "28093", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.2 inches", + "thickness": "0.9 inches", + "length": "5.4 inches", + "dimensions": "8.2 x 5.4 x 0.9 inches", + "weight": "0.65 pounds", + "pages": "304 " +}, +"250436484": { + "books_id": "250436484", + "title": "Growing Up Jewish: An Anthology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "David, Jay", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "David, Jay", + "fl": "Jay David", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688128246", + "isbn": { + "0": "0688128246", + "2": "9780688128241" + }, + "asin": "0688128246", + "ean": ["0688128246"], + "publication": "William Morrow & Co (1996), Edition: First Edition, 249 pages", + "date": "1996", + "summary": "Growing Up Jewish: An Anthology by Jay David (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 G763" + }, + "subject": [["Jewish youth", + "United States"], + ["Jewish youth", + "United States", + "Biography"], + ["Jews", + "Biography"], + ["Jews", + "United States", + "Biography"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "546427", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "249 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.2 pounds", + "pages": "249 " +}, +"250436566": { + "books_id": "250436566", + "title": "Jewish Life In The Middle Ages", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abrahams, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrahams, Israel", + "fl": "Israel Abrahams", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1015613659", + "isbn": { + "0": "1015613659", + "2": "9781015613652" + }, + "asin": "1015613659", + "ean": ["1015613659"], + "publication": "Legare Street Press (2022), 478 pages", + "date": "2022", + "summary": "Jewish Life In The Middle Ages by Israel Abrahams (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.04924"], + "wording": ["Ethnic and national groups", + "History & geography", + "History of Europe", + "History of Europe", + "Standard subdivisions"] + }, + "lcc": { + "code": "DS112 .A15" + }, + "subject": { + "0": ["Jews"], + "1": ["Jews", + "Social life and customs"], + "3": ["Judaism", + "History"], + "4": ["Judaism", + "History", + "Medieval and early modern period"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "639077", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "478 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "1.06 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 1.06 inches", + "weight": "1.86070149128 pounds", + "pages": "478 " +}, +"250436610": { + "books_id": "250436610", + "title": "Bialik", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Aberbach, David", + "primaryauthorrole": "Author", + "secondaryauthor": "Hertzberg, Arthur", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Aberbach, David", + "fl": "David Aberbach", + "role": "Author" + }, + { + "lf": "Hertzberg, Arthur", + "fl": "Arthur Hertzberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0802110622", + "isbn": { + "0": "0802110622", + "2": "9780802110626" + }, + "asin": "0802110622", + "ean": ["0802110622"], + "publication": "Grove Pr (1988), Edition: 1, 143 pages", + "date": "1988", + "summary": "Bialik by David Aberbach (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B52 A63" + }, + "genre": ["Fiction", + "Biography & Memoir", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "1240", + "53740"], + "source": "amazon.com books", + "workcode": "4142001", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250436645": { + "books_id": "250436645", + "title": "Rabbis in Uniform : A Century of Service to God and Country 1862-1962.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Louis Barish, Editor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Louis Barish, Editor", + "fl": "Editor Louis Barish", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0011TP3D8", + "publication": "Jonathan David Publishers (1962)", + "date": "1962", + "summary": "Rabbis in Uniform : A Century of Service to God and Country 1862-1962. by Editor Louis Barish (1962)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["355.347"], + "wording": ["Military Chaplaincy", + "Military science", + "Organization of military forces", + "Public administration & military science", + "Social sciences", + "Special service"] + }, + "lcc": { + "code": "UH23.B3" + }, + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "7705536", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.35 pounds" +}, +"250436685": { + "books_id": "250436685", + "title": "Stolen Girl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Skrypuch, Marsha Forchuk", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Skrypuch, Marsha Forchuk", + "fl": "Marsha Forchuk Skrypuch", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1338665146", + "isbn": { + "0": "1338665146", + "2": "9781338665147" + }, + "asin": "1338665146", + "ean": ["1338665146"], + "publication": "Scholastic Inc. (2020), 208 pages", + "date": "2020", + "summary": "Stolen Girl by Marsha Forchuk Skrypuch (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.6"], + "wording": ["2000-", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ7.S62853 S" + }, + "series": ["Stolen Child"], + "awards": ["Canadian Library Association Book of the Year for Children Award", + "Golden Oak Award", + "Kansas NEA Reading Circle Recommended Book", + "Manitoba Young Reader\u2019s Choice Award", + "SCBWI Crystal Kite Award", + "The Willow Awards"], + "genre": ["Fiction", + "Kids", + "Tween"], + "genre_id": ["17160326", + "24", + "1191"], + "source": "amazon.com books", + "workcode": "22458768", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 7.5 inches", + "height": "7.5 inches", + "thickness": "0.5 inches", + "length": "5.25 inches", + "dimensions": "7.5 x 5.25 x 0.5 inches", + "weight": "0.25 pounds", + "pages": "208 " +}, +"250436710": { + "books_id": "250436710", + "title": "Sunshine, Blossoms and Blood: H.N. Bialik In His Time: A Literary Biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feinstein, Sara", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feinstein, Sara", + "fl": "Sara Feinstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0761831428", + "isbn": { + "0": "0761831428", + "2": "9780761831426" + }, + "asin": "0761831428", + "ean": ["0761831428"], + "publication": "University Press of America (2005), 432 pages", + "date": "2005", + "summary": "Sunshine, Blossoms and Blood: H.N. Bialik In His Time: A Literary Biography by Sara Feinstein (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.415"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew poetry", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B52 F44" + }, + "genre": ["Fiction", + "Biography & Memoir"], + "genre_id": ["17160326", + "1240"], + "source": "amazon.com books", + "workcode": "3880158", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "432 p.; 9 inches", + "height": "9 inches", + "thickness": "1.08 inches", + "length": "6.5 inches", + "dimensions": "9 x 6.5 x 1.08 inches", + "weight": "1.3999353637 pounds", + "pages": "432 " +}, +"250436762": { + "books_id": "250436762", + "title": "The Jewish Past Revisited: Reflections on Modern Jewish Historians", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Myers, David N.", + "primaryauthorrole": "Editor", + "secondaryauthor": "Ruderman, David B.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Myers, David N.", + "fl": "David N. Myers", + "role": "Editor" + }, + { + "lf": "Ruderman, David B.", + "fl": "David B. Ruderman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300072163", + "isbn": { + "0": "0300072163", + "2": "9780300072167" + }, + "asin": "0300072163", + "ean": ["8580000070798"], + "publication": "Yale University Press (1998), 244 pages", + "date": "1998", + "summary": "The Jewish Past Revisited: Reflections on Modern Jewish Historians by David N. Myers (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115 .J48" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "927733", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "244 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "8.75 x 6.25 x 1 inches", + "weight": "0.9700339528 pounds", + "pages": "244 " +}, +"250436772": { + "books_id": "250436772", + "title": "Random Harvest & Other Novellas", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Haim Nachman Bialik", + "primaryauthorrole": "Author", + "secondaryauthor": "Patterson, David|Spicehandler, Ezra", + "secondaryauthorroles": "Author|Author", + "authors": [{ + "lf": "Haim Nachman Bialik", + "fl": "Haim Nachman Bialik", + "role": "Author" + }, + { + "lf": "Patterson, David", + "fl": "David Patterson", + "role": "Author" + }, + { + "lf": "Spicehandler, Ezra", + "fl": "Ezra Spicehandler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813367115", + "isbn": { + "0": "0813367115", + "2": "9780813367118" + }, + "asin": "159264094X", + "ean": ["159264094X"], + "publication": "The Toby Press (2005), 355 pages", + "date": "2005", + "summary": "Random Harvest & Other Novellas by Haim Nachman Bialik (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.435"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 A6" + }, + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "1371212", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "355 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.97 inches", + "length": "6.54 inches", + "dimensions": "8.5 x 6.54 x 0.97 inches", + "weight": "1.04058187664 pounds", + "pages": "355 " +}, +"250437661": { + "books_id": "250437661", + "title": "The Story of Tisha B'Av", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaplan, Aryeh", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Aryeh", + "fl": "Aryeh Kaplan", + "role": "Author" + }], + "tags": ["Tisha B'av"], + "tagidA": [1774738], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0940118327", + "isbn": { + "0": "0940118327", + "2": "9780940118324" + }, + "asin": "0940118327", + "ean": ["0940118327"], + "publication": "Moznaim Pub Corp (1981), 142 pages", + "date": "1981", + "summary": "The Story of Tisha B'Av by Aryeh Kaplan (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "9679805", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "142 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 0.75 inches", + "weight": "0.55 pounds", + "pages": "142 " +}, +"250437699": { + "books_id": "250437699", + "title": "The Meister Plan: A Doctor's Prescription for Financial Security and Success in Learning", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Meister, Tuvia", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meister, Tuvia", + "fl": "Tuvia Meister", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "157819198X", + "isbn": { + "0": "157819198X", + "2": "9781578191987" + }, + "asin": "157819198X", + "ean": ["157819198X"], + "publication": "Mesorah Publications Ltd. (1998), Edition: First Edition, 234 pages", + "date": "1998", + "summary": "The Meister Plan: A Doctor's Prescription for Financial Security and Success in Learning by Tuvia Meister (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["332.63"], + "wording": ["Economics", + "Financial economics", + "Investing", + "Personal Investing", + "Social sciences"] + }, + "lcc": { + "code": "HG4921.M45" + }, + "genre": ["Nonfiction", + "Business", + "Economics", + "Religion & Spirituality"], + "genre_id": ["20275895", + "20245", + "7973", + "1944"], + "source": "amazon.com books", + "workcode": "15140712", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "234 p.; 9.1 inches", + "height": "9.1 inches", + "thickness": "1.1 inches", + "length": "5.7 inches", + "dimensions": "9.1 x 5.7 x 1.1 inches", + "weight": "1.23017942196 pounds", + "pages": "234 " +}, +"250437745": { + "books_id": "250437745", + "title": "Secrecy and Deceit: The Religion of Crypto-Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gitlitz, David M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gitlitz, David M.", + "fl": "David M. Gitlitz", + "role": "Author" + }], + "tags": ["Crypto-Jews"], + "tagidA": [2421682], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827605625", + "isbn": { + "0": "0827605625", + "2": "9780827605626" + }, + "asin": "0827605625", + "ean": ["0827605625"], + "publication": "University of Nebraska Press (1996), Edition: First Edition, 677 pages", + "date": "1996", + "summary": "Secrecy and Deceit: The Religion of Crypto-Jews by David M. Gitlitz (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["946.004924"], + "wording": ["History & geography", + "History of Europe", + "Spain", + "Spain - Ethnic groups", + "Spain, Andorra, Gibraltar, Portugal"] + }, + "lcc": { + "code": "DS135.S7 G58" + }, + "subject": [["Jews", + "Spain", + "History"], + ["Marranos", + "Religious life"], + ["Spain", + "Ethnic relations"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1132266", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "677 p.; 10.5 inches", + "height": "10.5 inches", + "thickness": "1.75 inches", + "length": "7.5 inches", + "dimensions": "10.5 x 7.5 x 1.75 inches", + "weight": "3.24961374188 pounds", + "pages": "677 " +}, +"250437773": { + "books_id": "250437773", + "title": "Righteous Victims: A History of the Zionist-Arab Conflict, 1881-2001", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Morris, Benny", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Morris, Benny", + "fl": "Benny Morris", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0679744754", + "isbn": { + "0": "0679744754", + "2": "9780679744757" + }, + "asin": "0679744754", + "ean": ["0679744754"], + "publication": "Vintage (2001), Edition: Reprint, 800 pages", + "date": "2001", + "summary": "Righteous Victims: A History of the Zionist-Arab Conflict, 1881-2001 by Benny Morris (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .M657" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Arab-Israeli conflict", + "1993-", + "Peace"], + "3": ["Arab-Israeli conflict", + "Peace"], + "4": ["Jewish-Arab relations", + "History"], + "5": ["Jewish-Arab relations", + "History", + "1917-1948"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "464341", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "800 p.; 8 inches", + "height": "8 inches", + "thickness": "1.7 inches", + "length": "5.2 inches", + "dimensions": "8 x 5.2 x 1.7 inches", + "weight": "1.42418621252 pounds", + "pages": "800 " +}, +"250437802": { + "books_id": "250437802", + "title": "The Talmud and the Internet: A Journey between Worlds", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosen, Jonathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosen, Jonathan", + "fl": "Jonathan Rosen", + "role": "Author" + }], + "tags": ["Internet", + "Talmud"], + "tagidA": [1038913, + 629998], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "031242017X", + "isbn": { + "0": "031242017X", + "2": "9780312420178" + }, + "asin": "031242017X", + "ean": ["031242017X"], + "publication": "Picador (2001), Edition: First Edition, 144 pages", + "date": "2001", + "summary": "The Talmud and the Internet: A Journey between Worlds by Jonathan Rosen (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1206"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion", + "Talmud"] + }, + "lcc": { + "code": "BM504 .R657" + }, + "subject": { + "0": ["Internet", + "Religious aspects"], + "2": ["Internet", + "Religious aspects", + "Judaism"], + "3": ["Talmud", + "Criticism, interpretation, etc"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality", + "Technology"], + "genre_id": ["20275895", + "1247", + "66879", + "1944", + "17963"], + "source": "amazon.com books", + "workcode": "29523", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 8 inches", + "height": "8 inches", + "thickness": "0.34 inches", + "length": "5 inches", + "dimensions": "8 x 5 x 0.34 inches", + "weight": "0.35053499658 pounds", + "pages": "144 " +}, +"250437877": { + "books_id": "250437877", + "title": "Selected Poems of C.N. Bialik", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "C. N. Bialik", + "primaryauthorrole": "Author", + "secondaryauthor": "Aberbach, David", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "C. N. Bialik", + "fl": "C. N. Bialik", + "role": "Author" + }, + { + "lf": "Aberbach, David", + "fl": "David Aberbach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1585673439", + "isbn": { + "0": "1585673439", + "2": "9781585673438" + }, + "asin": "1585673439", + "ean": ["1585673439"], + "publication": "Abrams Press (2004), Edition: 1, 180 pages", + "date": "2004", + "summary": "Selected Poems of C.N. Bialik by C. N. Bialik (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 A6" + }, + "subject": [["Bialik, Hayyim Nahman, 1873-1934", + "Translations into English"]], + "awards": ["Philip Ward's Lifetime Reading Plan", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "Poetry"], + "genre_id": ["17160326", + "10010"], + "source": "amazon.com books", + "workcode": "2013499", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "180 p.; 9.21 inches", + "height": "9.2098241 inches", + "thickness": "0.7999984 inches", + "length": "6.25983 inches", + "dimensions": "9.2098241 x 6.25983 x 0.7999984 inches", + "weight": "0.89948602896 pounds", + "pages": "180 " +}, +"250437882": { + "books_id": "250437882", + "title": "And God Said: How Translations Conceal the Bible's Original Meaning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hoffman, Joel M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hoffman, Joel M.", + "fl": "Joel M. Hoffman", + "role": "Author" + }], + "tags": ["Translation"], + "tagidA": [1049664], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0312565585", + "isbn": { + "0": "0312565585", + "2": "9780312565589" + }, + "asin": "0312565585", + "ean": ["0312565585"], + "publication": "Thomas Dunne Books (2010), Edition: Illustrated, 272 pages", + "date": "2010", + "summary": "And God Said: How Translations Conceal the Bible's Original Meaning by Joel M. Hoffman (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.052"], + "wording": ["Old Testament", + "Old Testament (Tanakh)", + "Periodicals", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1133 .H64" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "9542890", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "272 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.7499985 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.7499985 inches", + "weight": "1.05 pounds", + "pages": "272 " +}, +"250437928": { + "books_id": "250437928", + "title": "I Will Bear Witness: A Diary of the Nazi Years, 1933-1941", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Klemperer, Victor", + "primaryauthorrole": "Author", + "secondaryauthor": "Chalmers, Martin", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Klemperer, Victor", + "fl": "Victor Klemperer", + "role": "Author" + }, + { + "lf": "Chalmers, Martin", + "fl": "Martin Chalmers", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375753788", + "isbn": { + "0": "0375753788", + "2": "9780375753787" + }, + "asin": "0375753788", + "ean": ["0375753788"], + "publication": "Modern Library (1999), Edition: Modern Library Edition, 544 pages", + "date": "1999", + "summary": "I Will Bear Witness: A Diary of the Nazi Years, 1933-1941 by Victor Klemperer (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086092"], + "wording": ["Biographies, Diaries And Journals", + "Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "History, geographic treatment, biography", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "PC2064.K5 A3" + }, + "subject": { + "0": ["Christian converts from Judaism", + "Dresden", + "Diaries"], + "1": ["Christian converts from Judaism", + "Germany", + "Dresden", + "Diaries"], + "2": ["Dresden (Germany)", + "Diaries"], + "4": ["French teachers", + "Germany", + "Diaries"], + "6": ["Germany", + "History", + "1933-1945", + "Sources"], + "8": ["Germany", + "Sources.", + "1933-1945"], + "9": ["Holocaust, Jewish (1939-1945)", + "Dresden", + "Personal narratives"], + "10": ["Holocaust, Jewish (1939-1945)", + "Germany", + "Dresden", + "Personal narratives"], + "11": ["Jews", + "Germany", + "Diaries"], + "12": ["Jews", + "Germany", + "History"], + "13": ["Jews", + "Germany", + "History", + "1933-1945"], + "14": ["Klemperer, Victor, 1881-1960", + "Diaries"], + "15": ["Philologists", + "Germany", + "Diaries"], + "17": ["World War, 1939-1945", + "Germany", + "Personal narratives, Jewish"] + }, + "series": ["The Diaries of Victor Klemperer", + "Ich will Zeugnis ablegen bis zum letzten. 2 Bd."], + "originaltitle": "Ich will Zeugnis ablegen bis zum letzten. Tageb\u00fccher 1933\u20131945", + "awards": ["501 Must-Read Books (Emma Beare, 2006)", + "Geschwister-Scholl-Preis", + "National Book Critics Circle Award", + "Notable Books List", + "SWR-Bestenliste"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2488979", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "544 p.; 7.95 inches", + "height": "7.95 inches", + "thickness": "1.2 inches", + "length": "5.25 inches", + "dimensions": "7.95 x 5.25 x 1.2 inches", + "weight": "1.00089866948 pounds", + "pages": "544 " +}, +"250437941": { + "books_id": "250437941", + "title": "Revealer of Secrets: The First Hebrew Novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Joseph Perl's -", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Joseph Perl's -", + "fl": "Joseph Perl's -", + "role": "Author" + }], + "tags": ["Hebrew", + "Novel"], + "tagidA": [301, + 14], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813332133", + "isbn": { + "0": "0813332133", + "2": "9780813332130" + }, + "asin": "B009ES90AA", + "ean": ["0813332133"], + "publication": "Westview Press - (1997)", + "date": "1997", + "summary": "Revealer of Secrets: The First Hebrew Novel by Joseph Perl's - (1997)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5051.P4 M4413" + }, + "originaltitle": "Megaleh temirin", + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "6986901", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.9 inches", + "thickness": "1.1 inches", + "length": "5.7 inches", + "dimensions": "8.9 x 5.7 x 1.1 inches", + "weight": "1.2 pounds", + "pages": "456 " +}, +"250437961": { + "books_id": "250437961", + "title": "Primo Levi: The Tragedy of an Optimist", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Anissimov, Myriam", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Anissimov, Myriam", + "fl": "Myriam Anissimov", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879518065", + "isbn": { + "0": "0879518065", + "2": "9780879518066" + }, + "asin": "0879518065", + "ean": ["0879518065"], + "publication": "Abrams Press (1999), Edition: First Edition, 608 pages", + "date": "1999", + "summary": "Primo Levi: The Tragedy of an Optimist by Myriam Anissimov (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["853.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "Italian fiction", + "Italian, Romanian & related literatures", + "Literature"] + }, + "lcc": { + "code": "PQ4872.E8 Z5613" + }, + "subject": { + "0": ["Auschwitz (Concentration camp)"], + "1": ["Authors, Italian", + "20th century", + "Biography"], + "2": ["Authors, Italian", + "Biography"], + "3": ["Holocaust survivors", + "Italy", + "Biography"], + "5": ["Levi, Primo"], + "6": ["Levi, Primo, 1919-1987", + "Biography"] + }, + "originaltitle": "Primo Levi ou la trag\u00e9die d'un optimiste", + "genre": ["Biography & Memoir", + "Literature Studies and Criticism"], + "genre_id": ["1240", + "53740"], + "source": "amazon.com books", + "workcode": "103591", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "608 p.; 8 inches", + "height": "7.999984 inches", + "thickness": "0.999998 inches", + "length": "4.99999 inches", + "dimensions": "7.999984 x 4.99999 x 0.999998 inches", + "weight": "1.85 pounds", + "pages": "608 " +}, +"250438000": { + "books_id": "250438000", + "title": "I Will Bear Witness: A Diary of the Nazis Years, 1942-1945", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Klemperer, Victor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klemperer, Victor", + "fl": "Victor Klemperer", + "role": "Author" + }], + "tags": ["Diary", + "Nazi"], + "tagidA": [1040733, + 1036091], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001O96QHC", + "publication": "Random House (1999), Edition: First Edition", + "date": "1999", + "summary": "I Will Bear Witness: A Diary of the Nazis Years, 1942-1945 by Victor Klemperer (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["943"], + "wording": ["Germany and neighboring central European countries", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "PC2064.K5 A3" + }, + "series": ["The Diaries of Victor Klemperer", + "Ich will Zeugnis ablegen bis zum letzten. 2 Bd.", + "Ich will Zeugnis ablegen bis zum letzten. 8 Bd."], + "originaltitle": "Ich will Zeugnis ablegen bis zum letzten \u2013 Tageb\u00fccher 1933\u20131945", + "awards": ["Harenberg Buch der 1000 B\u00fccher"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "13506600", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"250438112": { + "books_id": "250438112", + "title": "Mystics and Medics: A Comparison of Mystical and Psychotherapeutics Encounters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bulka, Reuven P.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bulka, Reuven P.", + "fl": "Reuven P. Bulka", + "role": "Author" + }], + "tags": ["Mystical", + "Psychotherapeutic"], + "tagidA": [1054161, + 20451628], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0877053774", + "isbn": { + "0": "0877053774", + "2": "9780877053774" + }, + "asin": "0877053774", + "ean": ["0877053774"], + "publication": "Human Sciences Pr (1979), Edition: First Edition, 120 pages", + "date": "1979", + "summary": "Mystics and Medics: A Comparison of Mystical and Psychotherapeutics Encounters by Reuven P. Bulka (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723.M97" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "9331148", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "120 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "1 pound", + "pages": "120 " +}, +"250438128": { + "books_id": "250438128", + "title": "The Natural and the Supernatural Jew, An Historical and Theological Introduction", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cohen, Arthur A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Arthur A.", + "fl": "Arthur A. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NWKWBM", + "publication": "Pantheon (1962), Edition: First Edition, 326 pages", + "date": "1962", + "summary": "The Natural and the Supernatural Jew, An Historical and Theological Introduction by Arthur A. Cohen (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601 .C6" + }, + "subject": [["Judaism", + "Doctrines"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1172258", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "326 p.", + "weight": "1.3 pounds", + "pages": "326 " +}, +"250438171": { + "books_id": "250438171", + "title": "If not now, when?: Toward a reconstitution of the Jewish people; conversations between Mordecai M. Kaplan and Arthur A. Cohen", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Mordecai Menahem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Mordecai Menahem", + "fl": "Mordecai Menahem Kaplan", + "role": "Author" + }], + "tags": ["reconstitution"], + "tagidA": [7512938], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805234977", + "isbn": { + "0": "0805234977", + "2": "9780805234978" + }, + "asin": "0805234977", + "ean": ["0805234977"], + "publication": "Schocken Books (1973), Edition: First Edition, 134 pages", + "date": "1973", + "summary": "If not now, when?: Toward a reconstitution of the Jewish people; conversations between Mordecai M. Kaplan and Arthur A. Cohen by Mordecai Menahem Kaplan (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.K27" + }, + "genre": ["Nonfiction", + "Anthropology", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "4617158", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.1 inches", + "thickness": "0.8 inches", + "length": "5.8 inches", + "dimensions": "8.1 x 5.8 x 0.8 inches", + "weight": "0.65 pounds", + "pages": "134 " +}, +"250438179": { + "books_id": "250438179", + "title": "Midrash in Context: Exegesis in Formative Judaism: The Foundations of Judaism: Method, Teleology, Doctrine (Part One: Method)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0800607082", + "isbn": { + "0": "0800607082", + "2": "9780800607081" + }, + "asin": "0800607082", + "ean": ["0800607082"], + "publication": "Fortress Press (1983), 217 pages", + "date": "1983", + "summary": "Midrash in Context: Exegesis in Formative Judaism: The Foundations of Judaism: Method, Teleology, Doctrine (Part One: Method) by Jacob Neusner (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601 BM514 .N48" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc., Jewish"], + ["Midrash", + "History and criticism"], + ["Rabbinical literature", + "History and criticism"]], + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "3411696", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "217 p.", + "weight": "1.1 pounds", + "pages": "217 " +}, +"250438227": { + "books_id": "250438227", + "title": "Tanach Yomi Daily Torah Study Deuteronomy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "amic", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "amic", + "fl": "amic", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B005JPW4UU", + "publication": "Amic (1999)", + "date": "1999", + "summary": "Tanach Yomi Daily Torah Study Deuteronomy by amic (1999)", + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31058615", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"250438241": { + "books_id": "250438241", + "title": "Dimensions of Jewish existence today.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "B'Nai B'Rith Hillel Foundations", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "B'Nai B'Rith Hillel Foundations", + "fl": "B'Nai B'Rith Hillel Foundations", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000E7T758", + "publication": "B'Nai B'Rith Hillel Foundations (1965), 135 pages", + "date": "1965", + "summary": "Dimensions of Jewish existence today. by B'Nai B'Rith Hillel Foundations (1965)", + "lcc": [], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "4657116", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250438287": { + "books_id": "250438287", + "title": "JEWISHNESS & the younger intellectuals", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Commentary Periodical", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Commentary Periodical", + "fl": "Commentary Periodical", + "role": "Author" + }], + "tags": ["intellectuals"], + "tagidA": [629849], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000RJARCA", + "publication": "Commentary (1961), Edition: First Edition", + "date": "1961", + "summary": "JEWISHNESS & the younger intellectuals by Commentary Periodical (1961)", + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31058624", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250438292": { + "books_id": "250438292", + "title": "Exodus", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Owens, John Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Owens, John Joseph", + "fl": "John Joseph Owens", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060664053", + "isbn": { + "0": "0060664053", + "2": "9780060664053" + }, + "asin": "0060664053", + "ean": ["0060664053"], + "publication": "Harper & Row (1977), Edition: First Edition, 245 pages", + "date": "1977", + "summary": "Exodus by John Joseph Owens (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.12"], + "wording": ["Exodus", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1245 .O9" + }, + "subject": [["Bible. O.T. Exodus", + "Translating"], + ["Hebrew language", + "Glossaries, vocabularies, etc"], + ["Hebrew language", + "Translating into English"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1220854", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "245 p.", + "height": "7.7 inches", + "thickness": "0.7 inches", + "length": "5 inches", + "dimensions": "7.7 x 5 x 0.7 inches", + "weight": "0.55 pounds", + "pages": "245 " +}, +"250438354": { + "books_id": "250438354", + "title": "Genesis", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Owens, John Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Owens, John Joseph", + "fl": "John Joseph Owens", + "role": "Author" + }], + "tags": ["analytical", + "grammatical", + "text"], + "tagidA": [88074, + 267960, + 9633], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060664061", + "isbn": { + "0": "0060664061", + "2": "9780060664060" + }, + "asin": "0060664061", + "ean": ["0060664061"], + "publication": "Harper & Row (1978), Edition: First Thus, 306 pages", + "date": "1978", + "summary": "Genesis by John Joseph Owens (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.11"], + "wording": ["Genesis", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1235.O93" + }, + "subject": [["Bible Old Testament Genesis Hebrew Words"], + ["Bible. O.T. Genesis", + "Translating"], + ["Hebrew language", + "Glossaries, vocabularies, etc"], + ["Hebrew language", + "Translating into English"]], + "genre": ["Nonfiction", + "Reference"], + "genre_id": ["20275895", + "4877"], + "source": "amazon.com books", + "workcode": "1107438", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "306 p.", + "height": "8 inches", + "thickness": "0.7 inches", + "length": "5.2 inches", + "dimensions": "8 x 5.2 x 0.7 inches", + "weight": "0.9 pounds", + "pages": "306 " +}, +"250438415": { + "books_id": "250438415", + "title": "First century Judaism in crisis;: Yohanan ben Zakkai and the renaissance of Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["first century"], + "tagidA": [41096], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0687131200", + "isbn": { + "0": "0687131200", + "2": "9780687131204" + }, + "asin": "0687131200", + "ean": ["0687131200"], + "publication": "Abingdon Press (1975), 203 pages", + "date": "1975", + "summary": "First century Judaism in crisis;: Yohanan ben Zakkai and the renaissance of Torah by Jacob Neusner (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.J7 N42" + }, + "subject": [["Judaism", + "History"], + ["Tannaim", + "Biography"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2292839", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250438530": { + "books_id": "250438530", + "title": "From Politics to Piety: The Emergence of Pharisaic Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["politics"], + "tagidA": [5432], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592441491", + "isbn": { + "0": "1592441491", + "2": "9781592441495" + }, + "asin": "1592441491", + "ean": ["1592441491"], + "publication": "Wipf and Stock (2003), Edition: Reprint, 218 pages", + "date": "2003", + "summary": "From Politics to Piety: The Emergence of Pharisaic Judaism by Jacob Neusner (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM175.P4 N44" + }, + "subject": [["Pharisees"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1588075", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "218 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.5 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.5 inches", + "weight": "0.6503636729 pounds", + "pages": "218 " +}, +"250438534": { + "books_id": "250438534", + "title": "The Way of Torah: An Introduction to Judaism (Religious Life of Man)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006DY7AA", + "publication": "Dickenson Pub. Co (1970), 116 pages", + "date": "1970", + "summary": "The Way of Torah: An Introduction to Judaism (Religious Life of Man) by Jacob Neusner (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM580 .N53" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "series": ["The Religious Life of Man"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "182354", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "116 p.", + "weight": "0.45 pounds", + "pages": "116 " +}, +"250438572": { + "books_id": "250438572", + "title": "The memorized Torah: The mnemonic system of the Mishnah (Brown Judaic studies)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891308660", + "isbn": { + "0": "0891308660", + "2": "9780891308669" + }, + "asin": "0891308660", + "ean": ["0891308660"], + "publication": "Scholars Press (1985), 138 pages", + "date": "1985", + "summary": "The memorized Torah: The mnemonic system of the Mishnah (Brown Judaic studies) by Jacob Neusner (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497.8 .N477" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "9998041", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250438574": { + "books_id": "250438574", + "title": "Ancient Israel After Catastrophe: The Religious World View of the Mishnah (RICHARD LECTURES, UNIVERSITY OF VIRGINIA)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["Mishna", + "ancient Israel"], + "tagidA": [453472, + 1062985], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813909805", + "isbn": { + "0": "0813909805", + "2": "9780813909806" + }, + "asin": "0813909805", + "ean": ["0813909805"], + "publication": "Univ of Virginia Pr (1983), Edition: First Edition, 82 pages", + "date": "1983", + "summary": "Ancient Israel After Catastrophe: The Religious World View of the Mishnah (RICHARD LECTURES, UNIVERSITY OF VIRGINIA) by Jacob Neusner (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497 .N472" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "5413995", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "82 p.", + "weight": "0.6 pounds", + "pages": "82 " +}, +"250438608": { + "books_id": "250438608", + "title": "Approaches to Modern Judaism II", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Raphael, Marc Lee", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raphael, Marc Lee", + "fl": "Marc Lee Raphael", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "089130794X", + "isbn": { + "0": "089130794X", + "2": "9780891307945" + }, + "asin": "089130794X", + "ean": ["089130794X"], + "publication": "Scholars Press (1985), 128 pages", + "date": "1985", + "summary": "Approaches to Modern Judaism II by Marc Lee Raphael (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["Fiction", + "Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["17160326", + "20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4752455", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250438663": { + "books_id": "250438663", + "title": "There We Sat Down: Talmudic Judaism in The Making", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["classical Judaism"], + "tagidA": [33919520], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870686763", + "isbn": { + "0": "0870686763", + "2": "9780870686764" + }, + "asin": "0870686763", + "ean": ["0870686763"], + "publication": "Ktav Pub & Distributors Inc (1982), Edition: 2, 158 pages", + "date": "1982", + "summary": "There We Sat Down: Talmudic Judaism in The Making by Jacob Neusner (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.N48" + }, + "subject": [["Judaism", + "History"], + ["Judaism", + "History", + "Talmudic period, 10-425"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2292857", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "158 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.5 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.5 inches", + "weight": "0.59965735264 pounds", + "pages": "158 " +}, +"250438685": { + "books_id": "250438685", + "title": "American Judaism: Adventure in Modernity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "087068681X", + "isbn": { + "0": "087068681X", + "2": "9780870686818" + }, + "asin": "087068681X", + "ean": ["087068681X"], + "publication": "Ktav Pub & Distributors Inc (1978), 170 pages", + "date": "1978", + "summary": "American Judaism: Adventure in Modernity by Jacob Neusner (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205.N48" + }, + "subject": [["Judaism", + "United States"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2292980", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "170 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "0.75 pounds", + "pages": "170 " +}, +"250438731": { + "books_id": "250438731", + "title": "History And Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["Essays"], + "tagidA": [8382], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0853030715", + "isbn": { + "0": "0853030715", + "2": "9780853030713" + }, + "asin": "0853030715", + "ean": ["0853030715"], + "publication": "Vallentine Mitchell (1965), Edition: First Edition", + "date": "1965", + "summary": "History And Torah by Jacob Neusner (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.08"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45.N39" + }, + "subject": { + "0": ["Jewish learning and scholarship"], + "2": ["Judaism"], + "4": ["judaism"] + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3210129", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250438754": { + "books_id": "250438754", + "title": "Fellowship in Judaism: The First Century and Today", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592449522", + "isbn": { + "0": "1592449522", + "2": "9781592449521" + }, + "asin": "1592449522", + "ean": ["1592449522"], + "publication": "Wipf and Stock (2004), 76 pages", + "date": "2004", + "summary": "Fellowship in Judaism: The First Century and Today by Jacob Neusner (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM720.F4 .N487" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "1599", + "1944", + "5686"], + "source": "amazon.com books", + "workcode": "1630876", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "76 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.18 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.18 inches", + "weight": "0.226 pounds", + "pages": "76 " +}, +"250438839": { + "books_id": "250438839", + "title": "Edmund Wilson, Letters on Literature and Politics, 1912-1972", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wilson, Edmund", + "primaryauthorrole": "Author", + "secondaryauthor": "Elena Wilson", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Wilson, Edmund", + "fl": "Edmund Wilson", + "role": "Author" + }, + { + "lf": "Elena Wilson", + "fl": "Elena Wilson", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374185018", + "isbn": { + "0": "0374185018", + "2": "9780374185015" + }, + "asin": "0374185018", + "ean": ["0374185018"], + "publication": "Farrar Straus Giroux (1977), 768 pages", + "date": "1977", + "summary": "Edmund Wilson, Letters on Literature and Politics, 1912-1972 by Edmund Wilson (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["818.5"], + "wording": ["20th Century", + "American literature in English", + "American miscellaneous writings in English", + "Literature"] + }, + "lcc": { + "code": "PS3545.I6245 Z54" + }, + "subject": { + "0": ["Authors, American", + "20th century", + "Correspondence"], + "1": ["Authors, American", + "Correspondence"], + "2": ["Critics", + "United States", + "Correspondence"], + "4": ["Wilson, Edmund, 1895-1972", + "Correspondence"] + }, + "awards": ["The New York Times Best Books of the Year"], + "genre": ["Fiction", + "Nonfiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "20275895", + "53740"], + "source": "amazon.com books", + "workcode": "521169", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "768 p.", + "weight": "2.5 pounds", + "pages": "768 " +}, +"250438867": { + "books_id": "250438867", + "title": "Hesed in the Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glueck, Nelson", + "primaryauthorrole": "Author", + "secondaryauthor": "Gottschalk, Alfred|Larue, Gerald A.", + "secondaryauthorroles": "Translator|Introduction", + "authors": [{ + "lf": "Glueck, Nelson", + "fl": "Nelson Glueck", + "role": "Author" + }, + { + "lf": "Gottschalk, Alfred", + "fl": "Alfred Gottschalk", + "role": "Translator" + }, + { + "lf": "Larue, Gerald A.", + "fl": "Gerald A. Larue", + "role": "Introduction" + }], + "tags": ["Hesed"], + "tagidA": [2938229], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1610971248", + "isbn": { + "0": "1610971248", + "2": "9781610971249" + }, + "asin": "1610971248", + "ean": ["1610971248"], + "publication": "Wipf & Stock Publishers (2011), 118 pages", + "date": "2011", + "summary": "Hesed in the Bible by Nelson Glueck (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["231.7"], + "wording": ["Christianity", + "God", + "Relation to the world - divine law and miracles", + "Religion"] + }, + "lcc": { + "code": "BS525.G653" + }, + "subject": [["Hesed (The Hebrew word)"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3065440", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "118 p.; 8.98 inches", + "height": "8.98 inches", + "thickness": "0.3 inches", + "length": "5.98 inches", + "dimensions": "8.98 x 5.98 x 0.3 inches", + "weight": "0.39903669422 pounds", + "pages": "118 " +}, +"250438907": { + "books_id": "250438907", + "title": "The World of the Judges. Backgrounds to the Bible Series", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "McKenzie, John L", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "McKenzie, John L", + "fl": "John L McKenzie", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002DQ5HIY", + "publication": "Prentice Hall (1965), Edition: English Language", + "date": "1965", + "summary": "The World of the Judges. Backgrounds to the Bible Series by John L McKenzie (1965)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.2095"], + "wording": ["Historical books of Old Testament", + "Joshua", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1295.M3" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "8553237", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250438980": { + "books_id": "250438980", + "title": "Judaism in the Secular Age", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "tags": ["secular"], + "tagidA": [8881], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "085303026X", + "isbn": { + "0": "085303026X", + "2": "9780853030263" + }, + "asin": "085303026X", + "ean": ["085303026X"], + "publication": "Vallentine Mitchell (1970), Edition: First Edition, 192 pages", + "date": "1970", + "summary": "Judaism in the Secular Age by Jacob Neusner (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.N48" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3151728", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.8 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.8 inches", + "weight": "0.8 pounds", + "pages": "192 " +}, +"250438989": { + "books_id": "250438989", + "title": "Contemporary Judaic fellowship in theory and in practice", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870681877", + "isbn": { + "0": "0870681877", + "2": "9780870681875" + }, + "asin": "0870681877", + "ean": ["0870681877"], + "publication": "Ktav Pub. House (1972), 270 pages", + "date": "1972", + "summary": "Contemporary Judaic fellowship in theory and in practice by Jacob Neusner (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM720.F4 N38" + }, + "subject": [["Fellowship", + "Judaism"], + ["Judaism", + "United States"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1612609", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439043": { + "books_id": "250439043", + "title": "The Myth of the Judeo-Christian Tradition, and Other Dissenting Essays", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cohen, Arthur Allen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Arthur Allen", + "fl": "Arthur Allen Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805202935", + "isbn": { + "0": "0805202935", + "2": "9780805202939" + }, + "asin": "0805202935", + "ean": ["0805202935"], + "publication": "Schocken Books (1971), 223 pages", + "date": "1971", + "summary": "The Myth of the Judeo-Christian Tradition, and Other Dissenting Essays by Arthur Allen Cohen (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM535 .C6" + }, + "subject": [["Christianity and other religions", + "Judaism"], + ["Judaism", + "Christianity"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1126484", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "223 p.", + "height": "7.8 inches", + "thickness": "0.8 inches", + "length": "5.1 inches", + "dimensions": "7.8 x 5.1 x 0.8 inches", + "weight": "0.5 pounds", + "pages": "223 " +}, +"250439051": { + "books_id": "250439051", + "title": "For the Relief of Unbearable Urges: Stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Englander, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Englander, Nathan", + "fl": "Nathan Englander", + "role": "Author" + }], + "tags": ["stories"], + "tagidA": [4850], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375404929", + "isbn": { + "0": "0375404929", + "2": "9780375404924" + }, + "asin": "0375404929", + "ean": ["0375404929"], + "publication": "Knopf (1999), Edition: First Edition, 224 pages", + "date": "1999", + "summary": "For the Relief of Unbearable Urges: Stories by Nathan Englander (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3555.N424 F67" + }, + "subject": { + "0": ["Jews", + "Fiction"], + "1": ["Jews", + "Persecutions", + "Fiction"], + "2": ["Jews", + "Social life and customs", + "Fiction"], + "3": ["Orthodox Judaism", + "Fiction"], + "5": ["Short stories"] + }, + "awards": ["Los Angeles Times Book Prize", + "National Jewish Book Award", + "Notable Books List", + "PEN/Hemingway Award", + "PEN/Malamud Award", + "Sue Kaufman Prize for First Fiction", + "The 50 Most Essential Works Of Jewish Fiction Of The Last 100 Years", + "The Most Important Books of the Last Twenty Years", + "Wingate Literary Prize"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "29224", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 9 inches", + "height": "9 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.25 inches", + "weight": "0.9 pounds", + "pages": "224 " +}, +"250439116": { + "books_id": "250439116", + "title": "Arguments and Doctrines: A Reader of Jewish Thinking in the Aftermath of the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Arthur A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Arthur A.", + "fl": "Arthur A. Cohen", + "role": "Author" + }], + "tags": ["holocaust", + "essays"], + "tagidA": [631226, + 631258], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060108134", + "isbn": { + "0": "0060108134", + "2": "9780060108137" + }, + "asin": "0060108134", + "ean": ["0060108134"], + "publication": "Harper and Row (1970), 541 pages", + "date": "1970", + "summary": "Arguments and Doctrines: A Reader of Jewish Thinking in the Aftermath of the Holocaust by Arthur A. Cohen (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.08"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40 .C54" + }, + "subject": [["Judaism"], + ["judaism"]], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "4654268", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439188": { + "books_id": "250439188", + "title": "Jewish Mothers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wolf, Lloyd", + "primaryauthorrole": "Author", + "secondaryauthor": "Roiphe, Anne|Wolfson, Paula", + "secondaryauthorroles": "Foreword|Author", + "authors": [{ + "lf": "Wolf, Lloyd", + "fl": "Lloyd Wolf", + "role": "Author" + }, + { + "lf": "Roiphe, Anne", + "fl": "Anne Roiphe", + "role": "Foreword" + }, + { + "lf": "Wolfson, Paula", + "fl": "Paula Wolfson", + "role": "Author" + }], + "tags": ["mothers"], + "tagidA": [25892], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0811827895", + "isbn": { + "0": "0811827895", + "2": "9780811827898" + }, + "asin": "0811827895", + "ean": ["0811827895"], + "publication": "Chronicle Books (2000), 144 pages", + "date": "2000", + "summary": "Jewish Mothers by Lloyd Wolf (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.874"], + "wording": ["Culture and institutions", + "Intrafamily relationships", + "Marriage, partnerships, unions; family", + "Parent-child relationship", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "E184.W64 J48" + }, + "genre": ["Nonfiction", + "Art & Design", + "Biography & Memoir", + "Religion & Spirituality", + "Tween"], + "genre_id": ["20275895", + "9985304", + "1240", + "1944", + "1191"], + "source": "amazon.com books", + "workcode": "927829", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "144 p.; 10.75 inches", + "height": "10.75 inches", + "thickness": "0.75 inches", + "length": "10.25 inches", + "dimensions": "10.75 x 10.25 x 0.75 inches", + "weight": "2.5683853523 pounds", + "pages": "144 " +}, +"250439416": { + "books_id": "250439416", + "title": "Isaac Dov Berkowitz: voice of the uprooted", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Holtz, Avraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Holtz, Avraham", + "fl": "Avraham Holtz", + "role": "Author" + }], + "tags": ["Berkowitz"], + "tagidA": [466022], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0852222785", + "isbn": { + "0": "0852222785", + "2": "9780852222782" + }, + "asin": "0852222785", + "ean": ["0852222785"], + "publication": "East And West Library (1973), Edition: First Edition, 242 pages", + "date": "1973", + "summary": "Isaac Dov Berkowitz: voice of the uprooted by Avraham Holtz (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B38 Z69" + }, + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "10791159", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439454": { + "books_id": "250439454", + "title": "Beggars and Prayers: Adin Steinsaltz Retells the Tales of Rabbi Nachman of Bratslav", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465005799", + "isbn": { + "0": "0465005799", + "2": "9780465005796" + }, + "asin": "0465005799", + "ean": ["0465005799"], + "publication": "Basic Books (1979), Edition: First Edition, 186 pages", + "date": "1979", + "summary": "Beggars and Prayers: Adin Steinsaltz Retells the Tales of Rabbi Nachman of Bratslav by Adin Steinsaltz (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532.S73" + }, + "subject": [["Hasidic parables"]], + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "1663093", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439509": { + "books_id": "250439509", + "title": "The Great Fair, Scenes From My Childhood", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sholom, Aleichem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sholom, Aleichem", + "fl": "Aleichem Sholom", + "role": "Author" + }], + "tags": ["childhood"], + "tagidA": [208], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000HHW0RC", + "publication": "THE NOONDAY PRESS (1955)", + "date": "1955", + "summary": "The Great Fair, Scenes From My Childhood by Aleichem Sholom (1955)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "und", + "yid"], + "ddc": { + "code": ["928.9249"], + "wording": ["Biography & genealogy", + "History & geography", + "Jewish writers", + "Other languages", + "People in literature, history, biography, genealogy"] + }, + "lcc": { + "code": "PJ5129.R2 F83" + }, + "genre": ["Biography & Memoir"], + "genre_id": ["1240"], + "source": "amazon.com books", + "workcode": "1404151", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.1 pounds" +}, +"250439553": { + "books_id": "250439553", + "title": "The Biblical account of the conquest of Palestine", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaufman, Yehezkel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaufman, Yehezkel", + "fl": "Yehezkel Kaufman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007ILVZ8", + "publication": "Magnes Press, The Hebrew University, Jerusalem, (1953), 98 pages", + "date": "1953", + "summary": "The Biblical account of the conquest of Palestine by Yehezkel Kaufman (1953)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31058733", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "98 p.", + "weight": "1.01 pounds", + "pages": "98 " +}, +"250439572": { + "books_id": "250439572", + "title": "Mid-Century: An Anthology of Jewish Life and Culture in Our Times", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ribalow, Harold U., Edited By", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ribalow, Harold U., Edited By", + "fl": "Harold U. Ribalow, Edited By", + "role": "Author" + }], + "tags": ["anthology"], + "tagidA": [463110], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002FAYX9W", + "publication": "The Beechhurst Press (1955), Edition: First Edition", + "date": "1955", + "summary": "Mid-Century: An Anthology of Jewish Life and Culture in Our Times by Harold U. Ribalow, Edited By (1955)", + "language": ["Undetermined"], + "language_codeA": ["und"], + "originallanguage_codeA": ["und"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "E184.J5 R5" + }, + "subject": [["Jews"], + ["Jews", + "United States"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3287555", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"250439610": { + "books_id": "250439610", + "title": "From Joseph to Joshua", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rowley, H. H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rowley, H. H.", + "fl": "H. H. Rowley", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NKK9SA", + "publication": "Oxford University Press (1951), Edition: 2nd", + "date": "1951", + "summary": "From Joseph to Joshua by H. H. Rowley (1951)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.93"], + "wording": ["Archaeology (Material remains)", + "Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1197.R6" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "8092723", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439685": { + "books_id": "250439685", + "title": "Solomon Schechter: A biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bentwich, Norman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bentwich, Norman", + "fl": "Norman Bentwich", + "role": "Author" + }], + "tags": ["Jewish Publication Society"], + "tagidA": [640654], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0008A5LME", + "publication": "Cambridge Univ Pr (1938), Edition: First edition, 3rd printing", + "date": "1938", + "summary": "Solomon Schechter: A biography by Norman Bentwich (1938)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["922.96"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "BM90.J559 S3" + }, + "subject": [["Schechter, S. (Solomon), 1847-1915"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "3611974", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439790": { + "books_id": "250439790", + "title": "The Folklore Of The Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rappoport, Angelo S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rappoport, Angelo S.", + "fl": "Angelo S. Rappoport", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0BQSXHTF2", + "publication": "Routledge (2013), Edition: 1, 288 pages", + "date": "2013", + "summary": "The Folklore Of The Jews by Angelo S. Rappoport (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.2089924"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Folklore by ethnic group", + "Groups of people", + "Jewish folklore", + "Semitic folklore", + "Social sciences"] + }, + "lcc": { + "code": "GR98.R3" + }, + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "20120915", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"250439797": { + "books_id": "250439797", + "title": "To dwell in safety;: The story of Jewish migration since 1800", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wischnitzer, Mark", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wischnitzer, Mark", + "fl": "Mark Wischnitzer", + "role": "Author" + }], + "tags": ["migration", + "1800"], + "tagidA": [13978, + 26005], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DVRS4", + "publication": "Jewish Publication Society of America (1948), Edition: First Edition, 368 pages", + "date": "1948", + "summary": "To dwell in safety;: The story of Jewish migration since 1800 by Mark Wischnitzer (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.12"], + "wording": ["Immigration", + "International migration and colonization", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "JV6348.J4 W5" + }, + "subject": [["Jews", + "Migrations"]], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "3333037", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250439868": { + "books_id": "250439868", + "title": "Dialogue and Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Agus, Jacob B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agus, Jacob B.", + "fl": "Jacob B. Agus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0200717251", + "isbn": { + "0": "0200717251", + "2": "9780200717250" + }, + "asin": "0200717251", + "ean": ["0200717251"], + "publication": "Abelard-Schuman (1971), Edition: Edition Not Stated", + "date": "1971", + "summary": "Dialogue and Tradition by Jacob B. Agus (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45.A34" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "13938192", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.74 pounds" +}, +"250439894": { + "books_id": "250439894", + "title": "The World of the Midrash", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lehrman, S. M.", + "primaryauthorrole": "Author", + "secondaryauthor": "Chaim Pearl", + "secondaryauthorroles": "Series Editor", + "authors": [{ + "lf": "Lehrman, S. M.", + "fl": "S. M. Lehrman", + "role": "Author" + }, + { + "lf": "Chaim Pearl", + "fl": "Chaim Pearl", + "role": "Series Editor" + }], + "tags": ["midrash"], + "tagidA": [905852], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001SQJZ9M", + "publication": "Thomas Yoseloff, Publisher (1961), Edition: First Edition, 163 pages", + "date": "1961", + "summary": "The World of the Midrash by S. M. Lehrman (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM514 L38" + }, + "subject": [["Midrash"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1352147", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250439982": { + "books_id": "250439982", + "title": "The Tales of Rabbi Nachman", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1573924539", + "isbn": { + "0": "1573924539", + "2": "9781573924535" + }, + "asin": "1573924539", + "ean": ["1573924539"], + "publication": "Humanity Books (1999), 250 pages", + "date": "1999", + "summary": "The Tales of Rabbi Nachman by Martin Buber (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["833.912"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "BM532 .B77513" + }, + "subject": [["Hasidic parables"]], + "genre": ["Fiction", + "General Fiction", + "Religion & Spirituality"], + "genre_id": ["17160326", + "2", + "1944"], + "source": "amazon.com books", + "workcode": "949732", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "250 p.; 8.3 inches", + "height": "8.3 inches", + "thickness": "0.52 inches", + "length": "5.4 inches", + "dimensions": "8.3 x 5.4 x 0.52 inches", + "weight": "0.6 pounds", + "pages": "250 " +}, +"250440003": { + "books_id": "250440003", + "title": "Talmudic and Rabbinical Chronology: The Systems of Counting Years in Jewish Literature", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Edgar, Frank", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Edgar, Frank", + "fl": "Frank Edgar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002KRG7YE", + "publication": "New York P. Feldheim (1956), Edition: First Edition", + "date": "1956", + "summary": "Talmudic and Rabbinical Chronology: The Systems of Counting Years in Jewish Literature by Frank Edgar (1956)", + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "CE35.F68" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2922325", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250440153": { + "books_id": "250440153", + "title": "The Tales of Rabbi Nachman of Bratslav: Selections with Commentary", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643000", + "isbn": { + "0": "1592643000", + "2": "9781592643004" + }, + "asin": "1592643000", + "ean": ["1592643000"], + "publication": "Koren Publishers Jerusalem (2010), 186 pages", + "date": "2010", + "summary": "The Tales of Rabbi Nachman of Bratslav: Selections with Commentary by Adin Steinsaltz (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532.S73" + }, + "subject": [["Hasidic parables"]], + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "1663093", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "186 p.; 8.6 inches", + "height": "8.6 inches", + "thickness": "0.9 inches", + "length": "5.6 inches", + "dimensions": "8.6 x 5.6 x 0.9 inches", + "weight": "0.92 pounds", + "pages": "186 " +}, +"250440190": { + "books_id": "250440190", + "title": "Nahman of Bratslav: The Tales (The Classics of Western Spirituality Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Na\u1e25man of Bratslav", + "primaryauthorrole": "Author", + "secondaryauthor": "Dan, Joseph|Band, Arnold J.|Band, Arnold J.|Band, Arnold J.", + "secondaryauthorroles": "Foreword|Technical Editor|Translator|Introduction", + "authors": [{ + "lf": "Na\u1e25man of Bratslav", + "fl": "Na\u1e25man of Bratslav", + "role": "Author" + }, + { + "lf": "Dan, Joseph", + "fl": "Joseph Dan", + "role": "Foreword" + }, + { + "lf": "Band, Arnold J.", + "fl": "Arnold J. Band", + "role": "Technical Editor" + }, + { + "lf": "Band, Arnold J.", + "fl": "Arnold J. Band", + "role": "Translator" + }, + { + "lf": "Band, Arnold J.", + "fl": "Arnold J. Band", + "role": "Introduction" + }], + "tags": ["classics"], + "tagidA": [132], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0809121034", + "isbn": { + "0": "0809121034", + "2": "9780809121038" + }, + "asin": "0809121034", + "ean": ["0809121034"], + "publication": "Paulist Press (1978), Edition: Revised ed., 368 pages", + "date": "1978", + "summary": "Nahman of Bratslav: The Tales (The Classics of Western Spirituality Series) by Na\u1e25man of Bratslav (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "BM532 .N33" + }, + "subject": { + "0": ["Hasidic parables"], + "2": ["Hasidim", + "Legends"] + }, + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "1882448", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 9.03 inches", + "height": "9.03 inches", + "thickness": "0.97 inches", + "length": "5.99 inches", + "dimensions": "9.03 x 5.99 x 0.97 inches", + "weight": "1.11994829096 pounds", + "pages": "368 " +}, +"250440237": { + "books_id": "250440237", + "title": "Tradition and Fantasy in the Tales of Reb Nahman of Bratslav (SUNY Series in Judaica) (Suny Judaica: Hermeneutics, Mysticism, and Religion)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiskind-Elper, Ora", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiskind-Elper, Ora", + "fl": "Ora Wiskind-Elper", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791438147", + "isbn": { + "0": "0791438147", + "2": "9780791438145" + }, + "asin": "0791438147", + "ean": ["0791438147"], + "publication": "State University of New York Press (1998), 324 pages", + "date": "1998", + "summary": "Tradition and Fantasy in the Tales of Reb Nahman of Bratslav (SUNY Series in Judaica) (Suny Judaica: Hermeneutics, Mysticism, and Religion) by Ora Wiskind-Elper (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532.W57" + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "5680186", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "324 p.; 8.6 inches", + "height": "8.6 inches", + "thickness": "0.73 inches", + "length": "5.41 inches", + "dimensions": "8.6 x 5.41 x 0.73 inches", + "weight": "0.93916923612 pounds", + "pages": "324 " +}, +"250440296": { + "books_id": "250440296", + "title": "Sholom Aleichem, Some Laughter, Some Tears, tales from the old world and the new", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leviant", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Leviant", + "fl": "Leviant", + "role": "Author" + }], + "tags": ["old world", + "tales"], + "tagidA": [4919, + 630706], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000UFJUVA", + "publication": "G. P. Putnam's Sons (1968), Edition: First Edition", + "date": "1968", + "summary": "Sholom Aleichem, Some Laughter, Some Tears, tales from the old world and the new by Leviant (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PZ3.R113 S" + }, + "subject": { + "0": ["Jewish fiction"], + "2": ["Jews", + "Fiction"], + "4": ["Sholem Aleichem, 1859-1916", + "Translations into English"] + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "249409", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.05 pounds" +}, +"250440359": { + "books_id": "250440359", + "title": "Selected Essays of Rabbi Saul Silber (Yiddish)", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001DO1PRO", + "publication": "Esther Silber Kopstein &", + "summary": "Selected Essays of Rabbi Saul Silber (Yiddish)", + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31058775", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250440469": { + "books_id": "250440469", + "title": "The Soul of Wood and Other Stories", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lind, Jakov", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lind, Jakov", + "fl": "Jakov Lind", + "role": "Author" + }], + "tags": ["stories"], + "tagidA": [4850], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000BDHM2U", + "publication": "Fawcett Crest (1966), Edition: First Paperback Edition, 158 pages", + "date": "1966", + "summary": "The Soul of Wood and Other Stories by Jakov Lind (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["833.914"], + "wording": ["1900-", + "1900-1990", + "1945-1990", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "PT2672.I48 S413" + }, + "subject": [["Jewish fiction"], + ["Jews", + "Europe", + "Fiction"]], + "originaltitle": "Eine Seele aus Holz", + "awards": ["Notable Books List"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "1095395", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "158 p.", + "weight": "0.5 pounds", + "pages": "158 " +}, +"250440582": { + "books_id": "250440582", + "title": "Israeli Painting: From Post-Impressionism to Post-Zionism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fuhrer, Ronald", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fuhrer, Ronald", + "fl": "Ronald Fuhrer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879518227", + "isbn": { + "0": "0879518227", + "2": "9780879518226" + }, + "asin": "0879518227", + "ean": ["0879518227"], + "publication": "The Overlook Press (1998), Edition: 1, 260 pages", + "date": "1998", + "summary": "Israeli Painting: From Post-Impressionism to Post-Zionism by Ronald Fuhrer (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["759.95694"], + "wording": ["Arts & recreation", + "Asia", + "History, geographic treatment, biography", + "Israel and Palestine", + "Middle East", + "Other Eastern Mediterranean", + "Other geographic areas", + "Painting"] + }, + "lcc": { + "code": "ND977 .F85" + }, + "subject": [["Painting, Israeli", + "20th century", + "Themes, motives"], + ["Painting, Israeli", + "Foreign influences"]], + "genre": ["Nonfiction", + "Art & Design", + "History"], + "genre_id": ["20275895", + "9985304", + "1599"], + "source": "amazon.com books", + "workcode": "1410279", + "entrydate": "2023-10-09", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "260 p.; 12.25 inches", + "height": "12.25 inches", + "thickness": "1.25 inches", + "length": "10 inches", + "dimensions": "12.25 x 10 x 1.25 inches", + "weight": "4.5 pounds", + "pages": "260 " +}, +"250784932": { + "books_id": "250784932", + "title": "Saturday the Rabbi Went Hungry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kemelman, Harry", + "primaryauthorrole": "Author", + "secondaryauthor": "Guidall, George|Recorded Books", + "secondaryauthorroles": "Narrator|Publisher", + "authors": [{ + "lf": "Kemelman, Harry", + "fl": "Harry Kemelman", + "role": "Author" + }, + { + "lf": "Guidall, George", + "fl": "George Guidall", + "role": "Narrator" + }, + { + "lf": "Recorded Books", + "fl": "Recorded Books", + "role": "Publisher" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00AALKZYU", + "publication": "Recorded Books (2012)", + "date": "2012", + "summary": "Saturday the Rabbi Went Hungry by Harry Kemelman (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.K3184 PS3561 .E398" + }, + "subject": { + "0": ["Detective and mystery stories"], + "2": ["Jewish fiction"], + "4": ["Large Type Books"], + "5": ["Large type books"], + "6": ["Massachusetts", + "Fiction"], + "8": ["Rabbis", + "Fiction"], + "10": ["Small, David (Fictitious character)", + "Fiction"] + }, + "series": ["Rabbi Small"], + "originaltitle": "Saturday the Rabbi Went Hungry", + "awards": ["Anthony Boucher's Best Crime Fiction of the Year", + "New York Times bestseller"], + "genre": ["Fiction", + "Mystery"], + "genre_id": ["17160326", + "46"], + "source": "amazon.com books", + "workcode": "126332", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.2.1", + "text": "Digital audiobook" + }], + "copies": "1" +}, +"250785335": { + "books_id": "250785335", + "title": "Reflections on Nazism: An Essay on Kitsch and Death", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedländer, Saul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friedländer, Saul", + "fl": "Saul Friedländer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0380700905", + "isbn": { + "0": "0380700905", + "2": "9780380700905" + }, + "asin": "0380700905", + "ean": ["0380700905"], + "publication": "Avon Books (1986), 112 pages", + "date": "1986", + "summary": "Reflections on Nazism: An Essay on Kitsch and Death by Saul Friedländer (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "DD256 .F7413" + }, + "subject": [["National Socialism"], + ["National socialism"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "1213947", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "112 p.", + "height": "6.2 inches", + "thickness": "0.4 inches", + "length": "3.9 inches", + "dimensions": "6.2 x 3.9 x 0.4 inches", + "weight": "0.16 pounds", + "pages": "112 " +}, +"250785341": { + "books_id": "250785341", + "title": "Raid At Entebbe", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peck, Ira", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peck, Ira", + "fl": "Ira Peck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001IP7VHQ", + "publication": "Scholastic Book Services (1977), Edition: First American Edition", + "date": "1977", + "summary": "Raid At Entebbe by Ira Peck (1977)", + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119.7 P4" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "1297616", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.1 pounds" +}, +"250785432": { + "books_id": "250785432", + "title": "Conservative Judaism: Our Ancestors to Our Descendants", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dorff rector and distinguished service professor of philosophy American Jewsih University, Elliot N. Rabbi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dorff rector and distinguished service professor of philosophy American Jewsih University, Elliot N. Rabbi", + "fl": "Elliot N. Rabbi Dorff rector and distinguished service professor of philosophy American Jewsih University", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0838100309", + "isbn": { + "0": "0838100309", + "2": "9780838100301" + }, + "asin": "0838100309", + "ean": ["0838100309"], + "publication": "United Synagogue Of Conservative Judaism (2007), Edition: Revised, 294 pages", + "date": "2007", + "summary": "Conservative Judaism: Our Ancestors to Our Descendants by Elliot N. Rabbi Dorff rector and distinguished service professor of philosophy American Jewsih University (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.D67" + }, + "subject": [["Conservative Judaism"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1591913", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "294 p.; 10.25 x 8 inches", + "height": "8 inches", + "thickness": "0.5 inches", + "length": "10.25 inches", + "dimensions": "8 x 10.25 x 0.5 inches", + "weight": "1.51 pounds", + "pages": "294 " +}, +"250785465": { + "books_id": "250785465", + "title": "A Living Tree: The Roots and Growth of Jewish Law", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Dorff, Elliot N.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dorff, Elliot N.", + "fl": "Elliot N. Dorff", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0887064604", + "isbn": { + "0": "0887064604", + "2": "9780887064609" + }, + "asin": "0887064604", + "ean": ["0887064604"], + "publication": "State University of New York Press (1987), Edition: 1st Published Edition, 620 pages", + "date": "1987", + "summary": "A Living Tree: The Roots and Growth of Jewish Law by Elliot N. Dorff (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["340.5"], + "wording": ["Law", + "Law", + "Legal Systems", + "Social sciences"] + }, + "lcc": { + "code": "KBM524.42 .D67" + }, + "genre": ["Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "7698106", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "620 p.; 9 inches", + "height": "9 inches", + "thickness": "1.4 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.4 inches", + "weight": "1.54103121138 pounds", + "pages": "620 " +}, +"250785595": { + "books_id": "250785595", + "title": "October Earthquake: Yom Kippur 1973", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schiff, Zeev", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schiff, Zeev", + "fl": "Zeev Schiff", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1412849845", + "isbn": { + "0": "1412849845", + "2": "9781412849845" + }, + "asin": "1412849845", + "ean": ["1412849845"], + "publication": "Routledge (2013), Edition: 1, 329 pages", + "date": "2013", + "summary": "October Earthquake: Yom Kippur 1973 by Zeev Schiff (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.048"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS128 .S3413" + }, + "subject": [["Israel-Arab War, 1973"]], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "6195946", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "329 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.43 inches", + "dimensions": "8.5 x 5.43 x 0.75 inches", + "weight": "0.79807338844 pounds", + "pages": "329 " +}, +"250785679": { + "books_id": "250785679", + "title": "A Life in Letters, 1914–1982", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Scholem, Gershom", + "primaryauthorrole": "Author", + "secondaryauthor": "Skinner, Anthony David", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Scholem, Gershom", + "fl": "Gershom Scholem", + "role": "Author" + }, + { + "lf": "Skinner, Anthony David", + "fl": "Anthony David Skinner", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674006429", + "isbn": { + "0": "0674006429", + "2": "9780674006423" + }, + "asin": "0674006429", + "ean": ["0674006429"], + "publication": "Harvard University Press (2002), Edition: First Edition, 560 pages", + "date": "2002", + "summary": "A Life in Letters, 1914–1982 by Gershom Scholem (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S295 A4" + }, + "subject": [["Jewish scholars", + "Correspondence"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "2282178", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "560 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.75 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.75 inches", + "weight": "2.01061582944 pounds", + "pages": "560 " +}, +"250785687": { + "books_id": "250785687", + "title": "A Social and Religious History of the Jews:Volume VI High Middle Ages (500-1200) Laws, Homilies, and the Bible", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001PJ65BS", + "publication": "Columbia Univ. Press (1958)", + "date": "1958", + "summary": "A Social and Religious History of the Jews:Volume VI High Middle Ages (500-1200) Laws, Homilies, and the Bible by Salo Wittmayer Baron (1958)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2581639", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250785751": { + "books_id": "250785751", + "title": "The Wise Men of Chelm", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Tenenbaum, Samuel", + "primaryauthorrole": "Author", + "secondaryauthor": "Blum, Zevi", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Tenenbaum, Samuel", + "fl": "Samuel Tenenbaum", + "role": "Author" + }, + { + "lf": "Blum, Zevi", + "fl": "Zevi Blum", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000IDH7F0", + "publication": "Collier Books (1969), Edition: Reprint", + "date": "1969", + "summary": "The Wise Men of Chelm by Samuel Tenenbaum (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.23"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences", + "Tales and lore of places and times"] + }, + "lcc": { + "code": "GR98.T4" + }, + "subject": [["Jews", + "Folklore"]], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "107270", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.3 pounds" +}, +"250785755": { + "books_id": "250785755", + "title": "The Jewish Community: Its History and Structure to the American Revolution. Volume One", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000HKHUEW", + "publication": "Jewish Publication Society of America (1948), Edition: First Edition, Later Impression", + "date": "1948", + "summary": "The Jewish Community: Its History and Structure to the American Revolution. Volume One by Salo Wittmayer Baron (1948)", + "ddc": { + "code": ["917.3"], + "wording": ["Geography & travel", + "Geography of and travel in North America", + "History & geography", + "United States"] + }, + "lcc": { + "code": "DS124.B29" + }, + "subject": [["Jews", + "Bibliography"], + ["Jews", + "Political and social conditions"], + ["Jews", + "Political and social conditions", + "Bibliography"], + ["Jews", + "Politics and government"]], + "genre": ["Nonfiction", + "History", + "Travel"], + "genre_id": ["20275895", + "1599", + "3578"], + "source": "amazon.com books", + "workcode": "4442769", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250785789": { + "books_id": "250785789", + "title": "Jewish Stories One Generation Tells Another", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schram, Peninnah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schram, Peninnah", + "fl": "Peninnah Schram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568219806", + "isbn": { + "0": "1568219806", + "2": "9781568219806" + }, + "asin": "1568219806", + "ean": ["1568219806"], + "publication": "Jason Aronson, Inc. (1996), 544 pages", + "date": "1996", + "summary": "Jewish Stories One Generation Tells Another by Peninnah Schram (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530 .S45" + }, + "subject": [["Jewish folk literature"], + ["Legends, Jewish"]], + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "179115", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "544 p.; 8.96 inches", + "height": "8.96 inches", + "thickness": "1.63 inches", + "length": "6.32 inches", + "dimensions": "8.96 x 6.32 x 1.63 inches", + "weight": "1.75047036028 pounds", + "pages": "544 " +}, +"250785798": { + "books_id": "250785798", + "title": "The Jewish Book of Why", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kolatch, Alfred J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kolatch, Alfred J.", + "fl": "Alfred J. Kolatch", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780142196199", + "isbn": ["9780142196199", + "0142196193"], + "asin": "0142196193", + "ean": ["0142196193"], + "publication": "Penguin Books (2003), Edition: Revised, 320 pages", + "date": "2003", + "summary": "The Jewish Book of Why by Alfred J. Kolatch (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM700.K59" + }, + "subject": [["Judaism", + "Customs and practices"], + ["Judaism", + "Customs and practices", + "Miscellanea"]], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "77297", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 7.96 inches", + "height": "7.96 inches", + "thickness": "0.72 inches", + "length": "5.24 inches", + "dimensions": "7.96 x 5.24 x 0.72 inches", + "weight": "0.59965735264 pounds", + "pages": "320 " +}, +"250785811": { + "books_id": "250785811", + "title": "A Social and Religious History of the Jews. Volume I: Ancient Times, Part I", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000Y1C4MW", + "publication": "Columbia Univ Pr (1952), Edition: Second Edition", + "date": "1952", + "summary": "A Social and Religious History of the Jews. Volume I: Ancient Times, Part I by Salo Wittmayer Baron (1952)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "560634", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"250785846": { + "books_id": "250785846", + "title": "Survival in Auschwitz and The Reawakening, Two Memoirs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levi, Primo", + "primaryauthorrole": "Author", + "secondaryauthor": "Woolf, Stuart", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Levi, Primo", + "fl": "Primo Levi", + "role": "Author" + }, + { + "lf": "Woolf, Stuart", + "fl": "Stuart Woolf", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671605410", + "isbn": { + "0": "0671605410", + "2": "9780671605414" + }, + "asin": "0671605410", + "ean": ["0671605410"], + "publication": "Summit Books (1986), Edition: 1st, 397 pages", + "date": "1986", + "summary": "Survival in Auschwitz and The Reawakening, Two Memoirs by Primo Levi (1986)", + "language": ["English", + "Italian"], + "language_codeA": ["eng", + "ita"], + "originallanguage": ["Italian"], + "originallanguage_codeA": ["eng", + "ita"], + "ddc": { + "code": ["920"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "History & geography"] + }, + "lcc": { + "code": "D805.P7 L4413" + }, + "subject": { + "0": ["Auschwitz (Concentration camp)"], + "2": ["Holocaust survivors", + "Italy", + "Biography"], + "4": ["Holocaust, Jewish (1939-1945)", + "Italy", + "Personal narratives"], + "6": ["Levi, Primo"], + "7": ["O?swi?ecim (Concentration camp)"], + "8": ["Prisoners of war", + "Italy", + "Biography"], + "10": ["Prisoners of war", + "Poland", + "Biography"], + "12": ["World War, 1939-1945", + "Concentration camps"], + "13": ["World War, 1939-1945", + "Personal narratives"], + "14": ["World War, 1939-1945", + "Personal narratives, Italian"], + "16": ["World War, 1939-1945", + "Personal narratives, Jewish"], + "17": ["World War, 1939-1945", + "Prisoners and prisons, German"], + "19": ["World War, 1939-1945", + "Prisoners and prisons, Italian"], + "20": ["World War, 1939-1945", + "prisoners and prisons, German"] + }, + "originaltitle": "Se questo è un uomo", + "awards": ["1,000 Books to Read Before You Die Page-A-Day Calendar", + "Daily Telegraph's 100 Books of the Century, 1900-1999", + "The Guardian Essential Library"], + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com books", + "workcode": "2907174", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.5 inches", + "thickness": "1.2 inches", + "length": "5.7 inches", + "dimensions": "8.5 x 5.7 x 1.2 inches", + "weight": "1.2 pounds", + "pages": "397 " +}, +"250785883": { + "books_id": "250785883", + "title": "Jewish Cooking in America: A Cookbook (Knopf Cooks American)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nathan, Joan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nathan, Joan", + "fl": "Joan Nathan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375402764", + "isbn": { + "0": "0375402764", + "2": "9780375402760" + }, + "asin": "0375402764", + "ean": ["0375402764"], + "publication": "Knopf (1998), Edition: Expanded, 544 pages", + "date": "1998", + "summary": "Jewish Cooking in America: A Cookbook (Knopf Cooks American) by Joan Nathan (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["641.5"], + "wording": ["Cooking; cookbooks", + "Food and drink", + "Home & family management", + "Technology"] + }, + "lcc": { + "code": "TX724 .N368" + }, + "subject": { + "0": ["Cookery, Jewish"], + "1": ["Jewish cookery"], + "3": ["Jews", + "United States", + "Social life and customs"] + }, + "series": ["Knopf Cooks American Series"], + "awards": ["IACP Cookbook Award"], + "genre": ["Nonfiction", + "Food & Cooking", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "20444", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "5087", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "544 p.; 9.56 inches", + "height": "9.56 inches", + "thickness": "1.81 inches", + "length": "6.46 inches", + "dimensions": "9.56 x 6.46 x 1.81 inches", + "weight": "1.99077422586 pounds", + "pages": "544 " +}, +"250785902": { + "books_id": "250785902", + "title": "Frauen: German Women Recall the Third Reich", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Owings, Alison", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Owings, Alison", + "fl": "Alison Owings", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813522005", + "isbn": { + "0": "0813522005", + "2": "9780813522005" + }, + "asin": "0813522005", + "ean": ["0813522005"], + "publication": "Rutgers University Press (1995), Edition: Second Paperback Printing, 536 pages", + "date": "1995", + "summary": "Frauen: German Women Recall the Third Reich by Alison Owings (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D811 .O885" + }, + "subject": { + "0": ["Women", + "Germany", + "Interviews"], + "2": ["World War, 1939-1945", + "Germany.", + "Women"], + "3": ["World War, 1939-1945", + "Personal narratives, German"], + "5": ["World War, 1939-1945", + "Women", + "Germany"] + }, + "originaltitle": "Frauen. German Women Recall the Third Reich", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "6880"], + "source": "amazon.com books", + "workcode": "240303", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "536 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.8 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.8 inches", + "weight": "1.62480687094 pounds", + "pages": "536 " +}, +"250785920": { + "books_id": "250785920", + "title": "The Kosher Pig: And Other Curiosities of Modern Jewish Life", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Israel, Richard J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Israel, Richard J.", + "fl": "Richard J. Israel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1881283151", + "isbn": { + "0": "1881283151", + "2": "9781881283157" + }, + "asin": "1881283151", + "ean": ["1881283151"], + "publication": "Alef Design Group (1994), 160 pages", + "date": "1994", + "summary": "The Kosher Pig: And Other Curiosities of Modern Jewish Life by Richard J. Israel (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205 .I82" + }, + "subject": [["Israel, Richard J"], + ["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["Judaism", + "United States", + "Miscellanea"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "976944", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "160 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.5 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.5 inches", + "weight": "0.63052206932 pounds", + "pages": "160 " +}, +"250785931": { + "books_id": "250785931", + "title": "The Yom Kippur war,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Insight Team of the London Sunday Times.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Insight Team of the London Sunday Times.", + "fl": "Insight Team of the London Sunday Times.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0743452577", + "isbn": { + "0": "0743452577", + "2": "9780743452571" + }, + "asin": "0385067380", + "ean": ["0385067380"], + "publication": "Doubleday (1974), 514 pages", + "date": "1974", + "summary": "The Yom Kippur war, by Insight Team of the London Sunday Times. (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.048"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS128.1" + }, + "subject": [["Israel-Arab War, 1973"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "1373559", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "514 p.", + "height": "8.11 inches", + "thickness": "1.57 inches", + "length": "5.35 inches", + "dimensions": "8.11 x 5.35 x 1.57 inches", + "weight": "1.27 pounds", + "pages": "514 " +}, +"250785961": { + "books_id": "250785961", + "title": "On the Possibility of Jewish Mysticism in Our Time", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom S", + "fl": "Gershom S Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760579X", + "isbn": { + "0": "082760579X", + "2": "9780827605794" + }, + "asin": "082760579X", + "ean": ["082760579X"], + "publication": "JEWISH PUBLICATON SOCIETY (1997), Edition: First Edition, 268 pages", + "date": "1997", + "summary": "On the Possibility of Jewish Mysticism in Our Time by Gershom S Scholem (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .S44132" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2332447", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "268 p.; 9.32 inches", + "height": "9.32 inches", + "thickness": "0.78 inches", + "length": "6.31 inches", + "dimensions": "9.32 x 6.31 x 0.78 inches", + "weight": "1.07 pounds", + "pages": "268 " +}, +"250786007": { + "books_id": "250786007", + "title": "A Bookshop in Berlin: The Rediscovered Memoir of One Woman's Harrowing Escape from the Nazis", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Frenkel, Françoise", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Frenkel, Françoise", + "fl": "Françoise Frenkel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1501199854", + "isbn": { + "0": "1501199854", + "2": "9781501199851" + }, + "asin": "1501199854", + "ean": ["1501199854"], + "publication": "Atria (2020), Edition: Illustrated, 288 pages", + "date": "2020", + "summary": "A Bookshop in Berlin: The Rediscovered Memoir of One Woman's Harrowing Escape from the Nazis by Françoise Frenkel (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318092"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D811 .F7313" + }, + "originaltitle": "Rien o\u00f9 poser sa t\u00eate", + "awards": ["Wingate Literary Prize"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "16856247", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 8.38 inches", + "height": "8.375 inches", + "thickness": "0.72 inches", + "length": "5.5 inches", + "dimensions": "8.375 x 5.5 x 0.72 inches", + "weight": "0.6 pounds", + "pages": "288 " +}, +"250786020": { + "books_id": "250786020", + "title": "Social and Religious History of the Jews, Vol. 4: High Middle Ages: Meeting of East and West", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo W.", + "fl": "Salo W. Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231088418", + "isbn": { + "0": "0231088418", + "2": "9780231088411" + }, + "asin": "0231088418", + "ean": ["0231088418"], + "publication": "Columbia University Press (1957), Edition: 2nd Revised, 352 pages", + "date": "1957", + "summary": "Social and Religious History of the Jews, Vol. 4: High Middle Ages: Meeting of East and West by Salo W. Baron (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1759103", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "352 p.; 9.23 inches", + "height": "9.23 inches", + "thickness": "1.14 inches", + "length": "6.34 inches", + "dimensions": "9.23 x 6.34 x 1.14 inches", + "weight": "1.2 pounds", + "pages": "352 " +}, +"250786036": { + "books_id": "250786036", + "title": "A Social and Religious History of the Jews Volume V", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001VAQNUO", + "publication": "Jewish Publication Society of Ameica, Philadelphia (1957), 416 pages", + "date": "1957", + "summary": "A Social and Religious History of the Jews Volume V by Salo Wittmayer Baron (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2581626", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250786068": { + "books_id": "250786068", + "title": "We Were the Lucky Ones: A Novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hunter, Georgia", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hunter, Georgia", + "fl": "Georgia Hunter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399563091", + "isbn": { + "0": "0399563091", + "2": "9780399563096" + }, + "asin": "0399563091", + "ean": ["0399563091"], + "publication": "Penguin Books (2018), Edition: Reprint, 416 pages", + "date": "2018", + "summary": "We Were the Lucky Ones: A Novel by Georgia Hunter (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.6"], + "wording": ["2000-", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3608.U59279 W4" + }, + "awards": ["Connecticut Book Award", + "National Jewish Book Award"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "18478827", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "416 p.; 8.22 inches", + "height": "8.22 inches", + "thickness": "0.9 inches", + "length": "5.44 inches", + "dimensions": "8.22 x 5.44 x 0.9 inches", + "weight": "0.7 pounds", + "pages": "416 " +}, +"250786103": { + "books_id": "250786103", + "title": "Social and Religious History of the Jews, Volume 18", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231088558", + "isbn": { + "0": "0231088558", + "2": "9780231088558" + }, + "asin": "0231088558", + "ean": ["0231088558"], + "publication": "Columbia University Press (1983), Edition: Revised, Enlarged, Subsequent, 620 pages", + "date": "1983", + "summary": "Social and Religious History of the Jews, Volume 18 by Salo Wittmayer Baron (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2581765", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "620 p.; 9 inches", + "height": "9 inches", + "thickness": "1.56 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.56 inches", + "weight": "2.33 pounds", + "pages": "620 " +}, +"250786123": { + "books_id": "250786123", + "title": "Social and Religious History of the Jews, Volume 2: Ancient Times to the Beginning of the Christian Era: The First Five Centuries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231088396", + "isbn": { + "0": "0231088396", + "2": "9780231088398" + }, + "asin": "0231088396", + "ean": ["0231064810"], + "publication": "Columbia University Press (1952), Edition: Volume 2, 436 pages", + "date": "1952", + "summary": "Social and Religious History of the Jews, Volume 2: Ancient Times to the Beginning of the Christian Era: The First Five Centuries by Salo Wittmayer Baron (1952)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "560635", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "436 p.; 9.1 inches", + "height": "9.1 inches", + "thickness": "1.4 inches", + "length": "6.2 inches", + "dimensions": "9.1 x 6.2 x 1.4 inches", + "weight": "1.75 pounds", + "pages": "436 " +}, +"250786200": { + "books_id": "250786200", + "title": "Suddenly Jewish: Jews Raised as Gentiles Discover Their Jewish Roots (Brandeis Series in American Jewish History, Culture, and Life)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kessel, Barbara", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kessel, Barbara", + "fl": "Barbara Kessel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1584656204", + "isbn": { + "0": "1584656204", + "2": "9781584656203" + }, + "asin": "1584656204", + "ean": ["1584656204"], + "publication": "Brandeis University Press (2007), Edition: 1, 144 pages", + "date": "2007", + "summary": "Suddenly Jewish: Jews Raised as Gentiles Discover Their Jewish Roots (Brandeis Series in American Jewish History, Culture, and Life) by Barbara Kessel (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS143 .K46" + }, + "genre": ["Nonfiction", + "Anthropology", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106707", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.5070632026 pounds", + "pages": "144 " +},"250786201": { + "books_id": "250786201", + "title": "The Arab-Israeli Wars: War and Peace in the Middle East", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Herzog, Chaim", + "primaryauthorrole": "Author", + "secondaryauthor": "Gazit, Shlomo", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Herzog, Chaim", + "fl": "Chaim Herzog", + "role": "Author" + }, + { + "lf": "Gazit, Shlomo", + "fl": "Shlomo Gazit", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781400079636", + "isbn": ["9781400079636", + "1400079632"], + "asin": "1400079632", + "ean": ["1400079632"], + "publication": "Vintage (2005), Edition: Revised, 560 pages", + "date": "2005", + "summary": "The Arab-Israeli Wars: War and Peace in the Middle East by Chaim Herzog (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.04"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .H47" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Israel", + "History, Military"] + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "45756", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "560 p.; 7.92 inches", + "height": "7.92 inches", + "thickness": "1.43 inches", + "length": "5.2 inches", + "dimensions": "7.92 x 5.2 x 1.43 inches", + "weight": "1.2875 pounds", + "pages": "560 " +}, +"250786241": { + "books_id": "250786241", + "title": "Where the Birds Never Sing: The True Story of the 92nd Signal Battalion and the Liberation of Dachau", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sacco, Jack", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sacco, Jack", + "fl": "Jack Sacco", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060096667", + "isbn": { + "0": "0060096667", + "2": "9780060096663" + }, + "asin": "0060096667", + "ean": ["0060096667"], + "publication": "Harper Perennial (2004), Edition: Illustrated, 336 pages", + "date": "2004", + "summary": "Where the Birds Never Sing: The True Story of the 92nd Signal Battalion and the Liberation of Dachau by Jack Sacco (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D769.363 92 .S33" + }, + "awards": ["Alabama Author Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "223419", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 9 inches", + "height": "9 inches", + "thickness": "0.84 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.84 inches", + "weight": "0.78 pounds", + "pages": "336 " +}, +"250786250": { + "books_id": "250786250", + "title": "Germany's War and the Holocaust: Disputed Histories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bartov, Omer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bartov, Omer", + "fl": "Omer Bartov", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0801486815", + "isbn": { + "0": "0801486815", + "2": "9780801486814" + }, + "asin": "0801486815", + "ean": ["0801486815"], + "publication": "Cornell University Press (2003), Edition: 1, 272 pages", + "date": "2003", + "summary": "Germany's War and the Holocaust: Disputed Histories by Omer Bartov (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804.3" + }, + "subject": [["Germany", + "History", + "World War, 1939-1945"], + ["Holocaust, Jewish (1939-1945)"], + ["National socialism", + "Historiography"], + ["War Crimes"], + ["War crimes"], + ["World War, 1939-1945", + "Atrocities"], + ["World War, 1939-1945", + "Eastern Front", + "Atrocities"], + ["World War, 1939-1945", + "Germany"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "502181", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 9 inches", + "height": "9 inches", + "thickness": "0.61 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.61 inches", + "weight": "0.85 pounds", + "pages": "272 " +}, +"250786256": { + "books_id": "250786256", + "title": "We Have Reason to Believe (3rd Revised Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobs, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jacobs, Louis", + "fl": "Louis Jacobs", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00GCPLN5S", + "publication": "London: Vallentine, Mitchell, 1965 (1965)", + "date": "1965", + "summary": "We Have Reason to Believe (3rd Revised Edition) by Louis Jacobs (1965)", + "language": ["Undetermined"], + "language_codeA": ["und"], + "originallanguage": ["English"], + "originallanguage_codeA": ["und", + "eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601 .J325" + }, + "subject": [["Judaism", + "Doctrines"]], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1634608", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"250786264": { + "books_id": "250786264", + "title": "Children in the Holocaust and World War II: Children in the Holocaust and World War II", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Holliday, Laurel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Holliday, Laurel", + "fl": "Laurel Holliday", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780671520557", + "isbn": ["9780671520557", + "0671520555"], + "asin": "0671520555", + "ean": ["0671520555"], + "publication": "Washington Square Press (1996), 440 pages", + "date": "1996", + "summary": "Children in the Holocaust and World War II: Children in the Holocaust and World War II by Laurel Holliday (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .C45" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Personal narratives"], + ["Jewish children in the Holocaust", + "Diaries"]], + "series": ["Children of Conflict"], + "originaltitle": "Children in the Holocaust and World War II", + "awards": ["ALA Popular Paperbacks for Young Adults"], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "5313029", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "440 p.; 7.13 inches", + "height": "7.125 inches", + "thickness": "1.3 inches", + "length": "5 inches", + "dimensions": "7.125 x 5 x 1.3 inches", + "weight": "0.69 pounds", + "pages": "440 " +}, +"250786296": { + "books_id": "250786296", + "title": "Social and Religious History of the Jews, Volume 16: Late Middle Ages and Era of European Expansion, 1200-1650; Poland-Lithuania, 1500-1650", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo W.", + "fl": "Salo W. Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231088531", + "isbn": { + "0": "0231088531", + "2": "9780231088534" + }, + "asin": "0231088531", + "ean": ["0231088531"], + "publication": "Columbia University Press (1976), Edition: Enlarged 2nd, 460 pages", + "date": "1976", + "summary": "Social and Religious History of the Jews, Volume 16: Late Middle Ages and Era of European Expansion, 1200-1650; Poland-Lithuania, 1500-1650 by Salo W. Baron (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112 B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2581798", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "460 p.; 9.1 x 1.4 inches", + "height": "1.4 inches", + "thickness": "6.1 inches", + "length": "9.1 inches", + "dimensions": "1.4 x 9.1 x 6.1 inches", + "weight": "1.5 pounds", + "pages": "460 " +}, +"250786314": { + "books_id": "250786314", + "title": "In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Larson, Erik", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Larson, Erik", + "fl": "Erik Larson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "030740885X", + "isbn": { + "0": "030740885X", + "2": "9780307408853" + }, + "asin": "030740885X", + "ean": ["8601300324326"], + "publication": "Crown (2012), Edition: First Edition, 448 pages", + "date": "2011", + "summary": "In the Garden of Beasts: Love, Terror, and an American Family in Hitler's Berlin by Erik Larson (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "E748.D6" + }, + "originaltitle": "In The Garden of Beasts", + "awards": ["Amazon.com Best Books", + "Audie Award", + "CBC Bookie Awards", + "Chautauqua Prize", + "Christian Science Monitor Best Book", + "Globe and Mail Top 100 Book", + "Goodreads Choice Awards", + "King County Library System Best Books", + "Kirkus Reviews Best Book of the Year", + "New York Times bestseller", + "Publishers Weekly's Best Books of the Year", + "Washington State Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "10709961", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 7.99 inches", + "height": "7.99 inches", + "thickness": "1.25 inches", + "length": "5.18 inches", + "dimensions": "7.99 x 5.18 x 1.25 inches", + "weight": "0.88 pounds", + "pages": "448 " +}, +"250786326": { + "books_id": "250786326", + "title": "Social and Religious History of the Jews, Volume 17", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "023108854X", + "isbn": { + "0": "023108854X", + "2": "9780231088541" + }, + "asin": "023108854X", + "ean": ["023108854X"], + "publication": "Columbia University Press (1980), Edition: 2nd Revised, Enlarged ed., 434 pages", + "date": "1980", + "summary": "Social and Religious History of the Jews, Volume 17 by Salo Wittmayer Baron (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4633820", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "434 p.; 9.02 x 1.13 inches", + "height": "1.13 inches", + "thickness": "5.98 inches", + "length": "9.02 inches", + "dimensions": "1.13 x 9.02 x 5.98 inches", + "weight": "1.73 pounds", + "pages": "434 " +}, +"250786329": { + "books_id": "250786329", + "title": "The Nazi Seizure of Power: The Experience of a Single German Town, 1922-1945", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Allen, William Sheridan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Allen, William Sheridan", + "fl": "William Sheridan Allen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B09NN71DC8", + "publication": "Echo Point Books & Media (2021), 414 pages", + "date": "2018", + "summary": "The Nazi Seizure of Power: The Experience of a Single German Town, 1922-1945 by William Sheridan Allen (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "DD256.A58" + }, + "subject": { + "0": ["Germany", + "Politics and government", + "1918-1933"], + "2": ["Local government", + "Germany", + "Case studies"], + "4": ["National Socialism"], + "6": ["National socialism"] + }, + "originaltitle": "The Nazi Seizure of Power. The Experience of a Single German Town, 1930-1935", + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "77288", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"250786357": { + "books_id": "250786357", + "title": "A Social and Religious History of the Jews Volume III: High Middle Ages, 500-1200:", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baron, Columbia Unversity Press 1957 Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Columbia Unversity Press 1957 Salo Wittmayer", + "fl": "Columbia Unversity Press 1957 Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00IH1KAKO", + "publication": "(1966)", + "date": "1966", + "summary": "A Social and Religious History of the Jews Volume III: High Middle Ages, 500-1200: by Columbia Unversity Press 1957 Salo Wittmayer Baron (1966)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "subject": [["Jews", + "History"], + ["Jews", + "history"], + ["Judaism", + "History"], + ["Judaism", + "history"]], + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2581881", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250786363": { + "books_id": "250786363", + "title": "How God Fix Jonah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Graham, Lorenz", + "primaryauthorrole": "Author", + "secondaryauthor": "Bryan, Ashley", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Graham, Lorenz", + "fl": "Lorenz Graham", + "role": "Author" + }, + { + "lf": "Bryan, Ashley", + "fl": "Ashley Bryan", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1563976986", + "isbn": { + "0": "1563976986", + "2": "9781563976988" + }, + "asin": "1563976986", + "ean": ["1563976986"], + "publication": "Boyds Mills Press (2000), Edition: Revised, 160 pages", + "date": "2000", + "summary": "How God Fix Jonah by Lorenz Graham (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.9"], + "wording": ["Geography, history, chronology, persons of Bible lands in Bible times", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS550 .G68" + }, + "subject": { + "0": ["Bible", + "Illustrations"], + "1": ["Bible stories, English"], + "3": ["Folk literature, African"] + }, + "awards": ["Notable Children's Book"], + "genre": ["Nonfiction", + "Poetry", + "Children's Books"], + "genre_id": ["20275895", + "10010", + "11"], + "source": "amazon.com books", + "workcode": "1500791", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "160 p.; 10.5 inches", + "height": "10.5 inches", + "thickness": "0.75 inches", + "length": "7.5 inches", + "dimensions": "10.5 x 7.5 x 0.75 inches", + "weight": "1.34922904344 pounds", + "pages": "160 " +}, +"250786408": { + "books_id": "250786408", + "title": "History and Jewish Historians: Essays and Addresses", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo", + "fl": "Salo Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DQUMW", + "publication": "Jewish Publication Society of America, (1964), Edition: First Edition, 504 pages", + "date": "1964", + "summary": "History and Jewish Historians: Essays and Addresses by Salo Baron (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS115.B37" + }, + "subject": [["Jewish historians"], + ["Jews", + "Historiography"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3172093", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "504 p.", + "weight": "1.65 pounds", + "pages": "504 " +}, +"250786428": { + "books_id": "250786428", + "title": "The Restoration of the Anne Frank House: A House with a Story", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Westra, Hans", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Westra, Hans", + "fl": "Hans Westra", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J0HRXO", + "publication": "(1996)", + "date": "1996", + "summary": "The Restoration of the Anne Frank House: A House with a Story by Hans Westra (1996)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135 .N6" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "16444643", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.4", + "text": "Pamphlet" + }], + "copies": "1" +}, +"250786429": { + "books_id": "250786429", + "title": "Clara's War: One Girl's Story of Survival", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kramer, Clara", + "primaryauthorrole": "Author", + "secondaryauthor": "Glantz, Stephen", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Kramer, Clara", + "fl": "Clara Kramer", + "role": "Author" + }, + { + "lf": "Glantz, Stephen", + "fl": "Stephen Glantz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0061728616", + "isbn": { + "0": "0061728616", + "2": "9780061728617" + }, + "asin": "0061728616", + "ean": ["0061728616"], + "publication": "Ecco (2010), Edition: Illustrated, 368 pages", + "date": "2010", + "summary": "Clara's War: One Girl's Story of Survival by Clara Kramer (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318092"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS134.72 .K73" + }, + "awards": ["Booklist Editor's Choice: Adult Books for Young Adults", + "Sophie Brody Medal"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "5382277", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 8 inches", + "height": "8 inches", + "thickness": "0.83 inches", + "length": "5.31 inches", + "dimensions": "8 x 5.31 x 0.83 inches", + "weight": "0.6 pounds", + "pages": "368 " +}, +"250786450": { + "books_id": "250786450", + "title": "Testament: At the Creation of the State of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levin, Aaron", + "primaryauthorrole": "Author", + "secondaryauthor": "Peres, Shimon", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Levin, Aaron", + "fl": "Aaron Levin", + "role": "Author" + }, + { + "lf": "Peres, Shimon", + "fl": "Shimon Peres", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1885183941", + "isbn": { + "0": "1885183941", + "2": "9781885183941" + }, + "asin": "1885183941", + "ean": ["1885183941"], + "publication": "Artisan (1998), Edition: First Edition, 192 pages", + "date": "1998", + "summary": "Testament: At the Creation of the State of Israel by Aaron Levin (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126 .A17" + }, + "subject": [["Israel", + "Biography"], + ["Israel-Arab War, 1948-1949", + "Personal narratives, Israeli"], + ["Israelis", + "Interviews"], + ["Israelis", + "Portraits"]], + "genre": ["Nonfiction", + "Art & Design", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2296182", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 10.5 inches", + "height": "10.5 inches", + "thickness": "1 inch", + "length": "10.5 inches", + "dimensions": "10.5 x 10.5 x 1 inches", + "weight": "2.85 pounds", + "pages": "192 " +}, +"250786469": { + "books_id": "250786469", + "title": "From Moses to Einstein;: They all are Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Davis, Mac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Davis, Mac", + "fl": "Mac Davis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007E4NCA", + "publication": "Jordan Pub. Co (1951), Edition: Revised, 127 pages", + "date": "1951", + "summary": "From Moses to Einstein;: They all are Jews by Mac Davis (1951)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["922.967"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "DS115.D3" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Tween"], + "genre_id": ["20275895", + "1240", + "1191"], + "source": "amazon.com books", + "workcode": "4708939", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "127 p.", + "weight": "1 pound", + "pages": "127 " +}, +"250786474": { + "books_id": "250786474", + "title": "The Jewish Community: Its History and Structure to the American Revolution. Volume One", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000HKHUEW", + "publication": "Jewish Publication Society of America (1948), Edition: First Edition, Later Impression", + "date": "1948", + "summary": "The Jewish Community: Its History and Structure to the American Revolution. Volume One by Salo Wittmayer Baron (1948)", + "ddc": { + "code": ["917.3"], + "wording": ["Geography & travel", + "Geography of and travel in North America", + "History & geography", + "United States"] + }, + "lcc": { + "code": "DS124.B29" + }, + "subject": [["Jews", + "Bibliography"], + ["Jews", + "Political and social conditions"], + ["Jews", + "Political and social conditions", + "Bibliography"], + ["Jews", + "Politics and government"]], + "genre": ["Nonfiction", + "History", + "Travel"], + "genre_id": ["20275895", + "1599", + "3578"], + "source": "amazon.com books", + "workcode": "4442769", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250786517": { + "books_id": "250786517", + "title": "Israel 25. A Pictorial Celebration of Israel's 25th Birthday.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pedahtsur, David", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Pedahtsur, David", + "fl": "David Pedahtsur", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870002279", + "isbn": { + "0": "0870002279", + "2": "9780870002274" + }, + "asin": "0870002279", + "ean": ["0870002279"], + "publication": "Massada Press (1973), 269 pages", + "date": "1973", + "summary": "Israel 25. A Pictorial Celebration of Israel's 25th Birthday. by David Pedahtsur (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS108.Y4813" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "3618829", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "269 p.", + "height": "12.5 inches", + "thickness": "1.1 inches", + "length": "9.7 inches", + "dimensions": "12.5 x 9.7 x 1.1 inches", + "weight": "3.8 pounds", + "pages": "269 " +}, +"250786524": { + "books_id": "250786524", + "title": "Bar-Kokhba: Tthe rediscovery of the legendary hero of the second Jewish Revolt against Rome", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yadin, Yigael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yadin, Yigael", + "fl": "Yigael Yadin", + "role": "Author" + }], + "tags": ["Revolt", + "Rome"], + "tagidA": [1064765, + 3415], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394471849", + "isbn": { + "0": "0394471849", + "2": "9780394471846" + }, + "asin": "0394471849", + "ean": ["0394471849"], + "publication": "Random House~trade (1971), Edition: First Edition, 265 pages", + "date": "1971", + "summary": "Bar-Kokhba: Tthe rediscovery of the legendary hero of the second Jewish Revolt against Rome by Yigael Yadin (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.9" + }, + "subject": { + "0": ["Bar Kokhba, d. 135"], + "1": ["Jews", + "History"], + "2": ["Jews", + "History", + "Bar Kokhba Rebellion, 132-135"], + "3": ["Jews", + "history"], + "4": ["Masada Site (Israel)", + "Siege, 72-73"], + "6": ["Palestine", + "Antiquities"] + }, + "originaltitle": "Bar-Kokhba", + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "548178", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "265 p.", + "height": "9.8 inches", + "thickness": "0.9 inches", + "length": "7.3 inches", + "dimensions": "9.8 x 7.3 x 0.9 inches", + "weight": "1 pound", + "pages": "265 " +}, +"250786529": { + "books_id": "250786529", + "title": "Masada", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Waldman, Neil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Waldman, Neil", + "fl": "Neil Waldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688144810", + "isbn": { + "0": "0688144810", + "2": "9780688144814" + }, + "asin": "0688144810", + "ean": ["0688144810"], + "publication": "Morrow Junior (1998), 64 pages", + "date": "1998", + "summary": "Masada by Neil Waldman (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS110.M33 W35" + }, + "awards": ["Notable Book for a Global Society"], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "1268347", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "64 p.; 10 inches", + "height": "10 inches", + "thickness": "0.75 inches", + "length": "9.5 inches", + "dimensions": "10 x 9.5 x 0.75 inches", + "weight": "1 pound", + "pages": "64 " +}, +"250786532": { + "books_id": "250786532", + "title": "Major Trends in Jewish Mysticism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom", + "fl": "Gershom Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210423", + "isbn": { + "0": "0805210423", + "2": "9780805210422" + }, + "asin": "0805210423", + "ean": ["0805210423"], + "publication": "Schocken (1995), Edition: Reissue, 496 pages", + "date": "1995", + "summary": "Major Trends in Jewish Mysticism by Gershom Scholem (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.833"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .S35" + }, + "subject": { + "0": ["Cabala", + "History"], + "2": ["Mysticism", + "Judaism"] + }, + "awards": ["HarperCollins 100 Best Spiritual Books of the Century"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "29291", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "496 p.; 7.99 inches", + "height": "7.99 inches", + "thickness": "1.06 inches", + "length": "5.18 inches", + "dimensions": "7.99 x 5.18 x 1.06 inches", + "weight": "0.9259415004 pounds", + "pages": "496 " +}, +"250786584": { + "books_id": "250786584", + "title": "Salmagundi, 100th Issue, Fall 1993", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Boyers, Peggy, Editor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Boyers, Peggy, Editor", + "fl": "Peggy Boyers, Editor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0000363529", + "isbn": { + "0": "0000363529", + "2": "9780000363527" + }, + "asin": "B002G837PO", + "ean": ["0000363529"], + "publication": "Skidmore College, Saratoga Springs, NY (1993), Edition: Nos. 172-173, 215 pages", + "date": "1993", + "summary": "Salmagundi, 100th Issue, Fall 1993 by Peggy Boyers, Editor (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["193"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of Germany and Austria"] + }, + "lcc": [], + "series": ["Salmagundi"], + "genre": ["Nonfiction", + "Art & Design"], + "genre_id": ["20275895", + "9985304"], + "source": "amazon.com books", + "workcode": "9862466", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250786593": { + "books_id": "250786593", + "title": "The Messianic Idea in Judaism (And Other Essays on Jewish Spirituality)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Scholem, Gersham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gersham", + "fl": "Gersham Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00E94ZCE2", + "publication": "Schoken Books (1972), Edition: Second Printing", + "date": "1972", + "summary": "The Messianic Idea in Judaism (And Other Essays on Jewish Spirituality) by Gersham Scholem (1972)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.33"], + "wording": ["Eschatology", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM615 .S33" + }, + "subject": { + "0": ["Judaism", + "History"], + "2": ["Judaism", + "history"], + "3": ["Messiah", + "Judaism"] + }, + "originaltitle": "Zum Verstaendnis der messianischen Idee im Judentum", + "awards": ["The Hundred Most Influential Books Since the War"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "9786", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250786621": { + "books_id": "250786621", + "title": "Six Days of War: June 1967 and the Making of the Modern Middle East", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Oren, Michael B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oren, Michael B.", + "fl": "Michael B. Oren", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0345461924", + "isbn": { + "0": "0345461924", + "2": "9780345461926" + }, + "asin": "0345461924", + "ean": ["0345461924"], + "publication": "Presidio Press (2003), 496 pages", + "date": "2003", + "summary": "Six Days of War: June 1967 and the Making of the Modern Middle East by Michael B. Oren (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.046"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127 .O74" + }, + "subject": [["Israel-Arab War, 1967"]], + "awards": ["Amazon.com Best Books", + "Los Angeles Times Book Prize", + "National Jewish Book Award", + "New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "7786", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "496 p.; 9.17 inches", + "height": "9.17 inches", + "thickness": "1.1 inches", + "length": "6.09 inches", + "dimensions": "9.17 x 6.09 x 1.1 inches", + "weight": "1.1133344231 pounds", + "pages": "496 " +}, +"250786622": { + "books_id": "250786622", + "title": "A Lucky Child", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Buergenthal, Thomas", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buergenthal, Thomas", + "fl": "Thomas Buergenthal", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316339180", + "isbn": { + "0": "0316339180", + "2": "9780316339186" + }, + "asin": "0316339180", + "ean": ["0316339180"], + "publication": "Little, Brown Spark (2015), Edition: Expanded, 304 pages", + "date": "2015", + "summary": "A Lucky Child by Thomas Buergenthal (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe"] + }, + "lcc": { + "code": "D810.C4 B84" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "30085718", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.75 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.75 inches", + "weight": "0.5 pounds", + "pages": "304 " +}, +"250786633": { + "books_id": "250786633", + "title": "We Were in Auschwitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Siedlecki, Janusz Nel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Siedlecki, Janusz Nel", + "fl": "Janusz Nel Siedlecki", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1566491231", + "isbn": { + "0": "1566491231", + "2": "9781566491235" + }, + "asin": "1566491231", + "ean": ["1566491231"], + "publication": "Welcome Rain Publishers (2000), 212 pages", + "date": "2000", + "summary": "We Were in Auschwitz by Janusz Nel Siedlecki (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D805.A96 N45" + }, + "originaltitle": "Byli\u015bmy w O\u015bwi\u0119cimiu", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Literature Studies and Criticism"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "53740"], + "source": "amazon.com books", + "workcode": "249314", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "212 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "0.7 pounds", + "pages": "212 " +}, +"250786655": { + "books_id": "250786655", + "title": "The Seventh day: soldiers' talk about the Six-Day War,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "avraham-shapira-henry-near", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "avraham-shapira-henry-near", + "fl": "avraham-shapira-henry-near", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140032444", + "isbn": { + "0": "0140032444", + "2": "9780140032444" + }, + "asin": "0140032444", + "ean": ["0140032444"], + "publication": "Penguin (1971), Edition: paperback / softback, 317 pages", + "date": "1971", + "summary": "The Seventh day: soldiers' talk about the Six-Day War, by avraham-shapira-henry-near (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.046"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127 .S513" + }, + "subject": [["Israel-Arab War, 1967", + "Personal narratives"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "2665257", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "317 p.", + "dimensions": "7 x 4.2 x 0.8 inches", + "weight": "0.40124131684 pounds", + "pages": "317 " +}, +"250786678": { + "books_id": "250786678", + "title": "Kabbalah (Library of Jewish knowledge)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom Gerhard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom Gerhard", + "fl": "Gershom Gerhard Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812903528", + "isbn": { + "0": "0812903528", + "2": "9780812903522" + }, + "asin": "0812903528", + "ean": ["0812903528"], + "publication": "Quadrangle/New York Times Book Co (1974), 492 pages", + "date": "1974", + "summary": "Kabbalah (Library of Jewish knowledge) by Gershom Gerhard Scholem (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.16"], + "wording": ["Jewish writings", + "Judaism", + "Kabbalah", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM526 .S35" + }, + "subject": [["Cabala", + "History and criticism"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "132150", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "492 p.", + "weight": "2.75 pounds", + "pages": "492 " +}, +"250786684": { + "books_id": "250786684", + "title": "The Correspondence of Walter Benjamin and Gershom Scholem, 1932\u20131940", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Scholem, Gershom", + "primaryauthorrole": "Editor", + "secondaryauthor": "Smith, Gary|Rabinbach, Anson|Lefevere, Andr\u00e9", + "secondaryauthorroles": "Translator|Introduction|Translator", + "authors": [{ + "lf": "Scholem, Gershom", + "fl": "Gershom Scholem", + "role": "Editor" + }, + { + "lf": "Smith, Gary", + "fl": "Gary Smith", + "role": "Translator" + }, + { + "lf": "Rabinbach, Anson", + "fl": "Anson Rabinbach", + "role": "Introduction" + }, + { + "lf": "Lefevere, Andr\u00e9", + "fl": "Andr\u00e9 Lefevere", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674174151", + "isbn": { + "0": "0674174151", + "2": "9780674174153" + }, + "asin": "0674174151", + "ean": ["0674174151"], + "publication": "Harvard University Press (1992), Edition: 1st Harvard Universi, 320 pages", + "date": "1992", + "summary": "The Correspondence of Walter Benjamin and Gershom Scholem, 1932\u20131940 by Gershom Scholem (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["838.91209"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German miscellaneous writings", + "Individual authors not limited to one specific form : description; critical appraisal; biography; collected works", + "Literature"] + }, + "lcc": { + "code": "PT2603.E455 Z54813" + }, + "subject": { + "0": ["Authors, German", + "20th century", + "Correspondence"], + "1": ["Authors, German", + "Correspondence"], + "2": ["Benjamin, Walter, 1892-1940", + "Correspondence"], + "3": ["Philosophers", + "Germany", + "Correspondence"], + "5": ["Scholem, Gershom Gerhard, 1897-", + "Correspondence"], + "6": ["Scholem, Gershom Gerhard, 1897-1982", + "Correspondence"] + }, + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "467920", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "volumes": "1", + "physical_description": "320 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.05 pounds", + "pages": "320 " +}, +"250786691": { + "books_id": "250786691", + "title": "Rashi's Daughters, Book II: Miriam: A Novel of Love and the Talmud in Medieval France (Rashi's Daughters Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Anton, Maggie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Anton, Maggie", + "fl": "Maggie Anton", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0452288630", + "isbn": { + "0": "0452288630", + "2": "9780452288638" + }, + "asin": "0452288630", + "ean": ["0452288630"], + "publication": "Plume (2007), 496 pages", + "date": "2007", + "summary": "Rashi's Daughters, Book II: Miriam: A Novel of Love and the Talmud in Medieval France (Rashi's Daughters Series) by Maggie Anton (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3601.N57 R37" + }, + "subject": [["Fathers and daughters", + "Fiction"], + ["France", + "History", + "Medieval period, 987-1515", + "Fiction"], + ["Jewish fiction"], + ["Jewish women", + "Fiction"], + ["Jews", + "France", + "Fiction"], + ["Vintners", + "Fiction"], + ["Yeshivas", + "Fiction"]], + "series": ["Rashi's Daughters"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "2632258", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "496 p.; 8.4 inches", + "height": "8.4 inches", + "thickness": "1.1 inches", + "length": "5.5 inches", + "dimensions": "8.4 x 5.5 x 1.1 inches", + "weight": "0.98 pounds", + "pages": "496 " +}, +"250786706": { + "books_id": "250786706", + "title": "Miriam's Cup: A Passover Story", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Manushkin, Fran", + "primaryauthorrole": "Author", + "secondaryauthor": "Dacey, Bob", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Manushkin, Fran", + "fl": "Fran Manushkin", + "role": "Author" + }, + { + "lf": "Dacey, Bob", + "fl": "Bob Dacey", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0590677209", + "isbn": { + "0": "0590677209", + "2": "9780590677202" + }, + "asin": "0590677209", + "ean": ["0590677209"], + "publication": "Scholastic Press (1998), Edition: First Edition, 32 pages", + "date": "1998", + "summary": "Miriam's Cup: A Passover Story by Fran Manushkin (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1092"], + "wording": ["Biography", + "Biography; By Place", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS580.M54 M36" + }, + "subject": { + "0": ["Bible stories", + "O.T"], + "2": ["Bible stories, English", + "O.T. Exodus"], + "4": ["Bible. O.T.", + "Biography", + "Juvenile literature"], + "5": ["Miriam (Biblical figure)"], + "6": ["Miriam (Biblical figure)", + "Juvenile literature"], + "7": ["Passover"], + "9": ["Passover", + "Juvenile literature"], + "10": ["Seder"], + "12": ["Seder", + "Juvenile literature"] + }, + "awards": ["Sydney Taylor Book Award"], + "genre": ["Children's Books", + "Picture Books"], + "genre_id": ["11", + "138448"], + "source": "amazon.com books", + "workcode": "637447", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "32 p.; 11.75 x 11 inches", + "height": "11 inches", + "thickness": "0.5 inches", + "length": "11.75 inches", + "dimensions": "11 x 11.75 x 0.5 inches", + "weight": "1.2 pounds", + "pages": "32 " +}, +"250786724": { + "books_id": "250786724", + "title": "The Last Jew of Treblinka: A Survivor's Memory 1942-1943", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B007NB9CIK", + "publication": "Pegasus Books LLC, 138 pages", + "summary": "The Last Jew of Treblinka: A Survivor's Memory 1942-1943", + "language": ["English (Middle)"], + "language_codeA": ["enm"], + "originallanguage": ["English"], + "originallanguage_codeA": ["enm", + "eng"], + "ddc": { + "code": ["940.5318092"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D805.T74 R35" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "9846576", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.3", + "text": "Board book" + }], + "copies": "1" +}, +"250786728": { + "books_id": "250786728", + "title": "Legends of Our Time", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211756", + "isbn": { + "0": "0805211756", + "2": "9780805211757" + }, + "asin": "0805211756", + "ean": ["0805211756"], + "publication": "Schocken (2004), Edition: First THUS Edition, 208 pages", + "date": "2004", + "summary": "Legends of Our Time by Elie Wiesel (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["843.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PZ4.W652 L" + }, + "genre": ["Fiction", + "Biography & Memoir"], + "genre_id": ["17160326", + "1240"], + "source": "amazon.com books", + "workcode": "388701", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 8 inches", + "height": "8 inches", + "thickness": "0.6 inches", + "length": "5.2 inches", + "dimensions": "8 x 5.2 x 0.6 inches", + "weight": "0.39903669422 pounds", + "pages": "208 " +}, +"250786740": { + "books_id": "250786740", + "title": "Les Parisiennes: How the Women of Paris Lived, Loved, and Died Under Nazi Occupation", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sebba, Anne", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sebba, Anne", + "fl": "Anne Sebba", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1250048591", + "isbn": { + "0": "1250048591", + "2": "9781250048592" + }, + "asin": "1250048591", + "ean": ["1250048591"], + "publication": "St. Martin's Press (2016), Edition: First Edition, 480 pages", + "date": "2016", + "summary": "Les Parisiennes: How the Women of Paris Lived, Loved, and Died Under Nazi Occupation by Anne Sebba (2016)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.40944"], + "wording": ["Europe", + "France & Monaco", + "Groups of people", + "History, geographic treatment, biography", + "Social sciences", + "Social sciences, sociology & anthropology", + "Standard subdivisions", + "Women"] + }, + "lcc": { + "code": "HQ1620.P2 S43" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "17708551", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "480 p.; 9.39 inches", + "height": "9.39 inches", + "thickness": "1.499997 inches", + "length": "6.4799083 inches", + "dimensions": "9.39 x 6.4799083 x 1.499997 inches", + "weight": "1.85 pounds", + "pages": "480 " +}, +"250786766": { + "books_id": "250786766", + "title": "The Family Treasury of Jewish Holidays", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Drucker, Malka", + "primaryauthorrole": "Author", + "secondaryauthor": "Patz, Nancy", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Drucker, Malka", + "fl": "Malka Drucker", + "role": "Author" + }, + { + "lf": "Patz, Nancy", + "fl": "Nancy Patz", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780316193436", + "isbn": ["9780316193436", + "0316193437"], + "asin": "0316193437", + "ean": ["0316193437"], + "publication": "Little, Brown (1994), Edition: 7th Print, 192 pages", + "date": "1994", + "summary": "The Family Treasury of Jewish Holidays by Malka Drucker (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690 .D77" + }, + "subject": { + "0": ["Fasts and feasts", + "Judaism"], + "2": ["Fasts and feasts", + "Judaism", + "Juvenile literature"], + "3": ["Fasts and feasts", + "Juvenile literature"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "Customs and practices", + "Juvenile literature"], + "7": ["Judaism", + "Juvenile literature"] + }, + "awards": ["BCCB Blue Ribbon Book", + "Sydney Taylor Book Award"], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "345543", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 11.5 inches", + "height": "11.5 inches", + "thickness": "0.75 inches", + "length": "9 inches", + "dimensions": "11.5 x 9 x 0.75 inches", + "weight": "2.3 pounds", + "pages": "192 " +}, +"250786771": { + "books_id": "250786771", + "title": "The Russian Jew Under Tsars and Soviets", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baron, Salo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo", + "fl": "Salo Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CMGKT", + "publication": "Macmillan (1964), Edition: First Edition, 427 pages", + "date": "1964", + "summary": "The Russian Jew Under Tsars and Soviets by Salo Baron (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.004924"], + "wording": ["Ethnic minorities", + "History & geography", + "History of Europe", + "Jews", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.R9 B28" + }, + "subject": [["Jews", + "Soviet Union", + "History"], + ["Soviet Union", + "Ethnic relations"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "5168669", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "427 p.", + "weight": "1 pound", + "pages": "427 " +}, +"250786795": { + "books_id": "250786795", + "title": "Golem (Caldecott Medal Book) by David Wisniewski (1996-11-25)", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01HC9PZ60", + "publication": "Houghton Mifflin (Trade)", + "summary": "Golem (Caldecott Medal Book) by David Wisniewski (1996-11-25)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.21"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences", + "Tales and lore of paranatural beings of human and semihuman form"] + }, + "lcc": { + "code": "BM531 .W57" + }, + "subject": { + "0": ["Folklore", + "Czech Republic"], + "2": ["GOLEM"], + "3": ["Golem"], + "5": ["Jews", + "Czech Republic", + "Folklore"], + "7": ["Judah Loew ben Bezalel, ca. 1525-1609", + "Legends"], + "8": ["Legends, Jewish"] + }, + "originaltitle": "Golem", + "awards": ["Booklist Editors' Choice: Books for Youth", + "Caldecott Medal", + "Kentucky Bluegrass Award", + "New York Times / New York Public Library Best Illustrated Children's Books", + "Notable Book for a Global Society", + "Notable Children's Book", + "Sydney Taylor Book Award"], + "genre": ["Children's Books"], + "genre_id": ["11"], + "source": "amazon.com books", + "workcode": "126134", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250786800": { + "books_id": "250786800", + "title": "My Holocaust: A Novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Reich, Tova", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Reich, Tova", + "fl": "Tova Reich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0061173479", + "isbn": { + "0": "0061173479", + "2": "9780061173479" + }, + "asin": "0061173479", + "ean": ["0061173479"], + "publication": "Harper Perennial (2008), Edition: Reprint, 336 pages", + "date": "2008", + "summary": "My Holocaust: A Novel by Tova Reich (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3568.E4763 M9" + }, + "subject": [["Jews", + "United States", + "Fiction"], + ["Satire"], + ["satire"]], + "awards": ["San Francisco Chronicle Best Book of the Year"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "2703520", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8 inches", + "height": "8 inches", + "thickness": "0.76 inches", + "length": "5.31 inches", + "dimensions": "8 x 5.31 x 0.76 inches", + "weight": "0.55 pounds", + "pages": "336 " +}, +"250786808": { + "books_id": "250786808", + "title": "Walter Benjamin: The Story of a Friendship (New York Review Books Classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom Gerhard", + "primaryauthorrole": "Author", + "secondaryauthor": "Lee Siegel (Introduction)", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Scholem, Gershom Gerhard", + "fl": "Gershom Gerhard Scholem", + "role": "Author" + }, + { + "lf": "Lee Siegel (Introduction)", + "fl": "Lee Siegel (Introduction)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1590170326", + "isbn": { + "0": "1590170326", + "2": "9781590170328" + }, + "asin": "1590170326", + "ean": ["1590170326"], + "publication": "NYRB Classics (2003), Edition: Reprint, 328 pages", + "date": "2003", + "summary": "Walter Benjamin: The Story of a Friendship (New York Review Books Classics) by Gershom Gerhard Scholem (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["838.91209"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German miscellaneous writings", + "Individual authors not limited to one specific form : description; critical appraisal; biography; collected works", + "Literature"] + }, + "lcc": { + "code": "PT2603.E455 Z8913" + }, + "subject": [["Authors, German", + "20th century", + "Biography"], + ["Authors, German", + "Biography"], + ["Benjamin, Walter, 1892-1940", + "Friends and associates"], + ["Jewish scholars", + "Germany", + "Biography"], + ["Jewish scholars", + "Israel", + "Biography"], + ["Jews", + "Germany", + "Intellectual life"], + ["Scholem, Gershom Gerhard, 1897-"], + ["Scholem, Gershom Gerhard, 1897-1982"], + ["Scholem, Gershom Gerhard, 1897-1982."]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Literature Studies and Criticism"], + "genre_id": ["20275895", + "1240", + "53740"], + "source": "amazon.com books", + "workcode": "195899", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "328 p.; 7.97 inches", + "height": "7.97 inches", + "thickness": "0.87 inches", + "length": "4.98 inches", + "dimensions": "7.97 x 4.98 x 0.87 inches", + "weight": "0.7495716908 pounds", + "pages": "328 " +}, +"250786831": { + "books_id": "250786831", + "title": "Alexander Pushkin Tales", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pushkin, Alexander", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pushkin, Alexander", + "fl": "Alexander Pushkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "5050000521", + "isbn": { + "0": "5050000521", + "2": "9785050000521" + }, + "asin": "5050000521", + "ean": ["5050000521"], + "publication": "Raduga Publishers, (1985), Edition: Unstated, 134 pages", + "date": "1985", + "summary": "Alexander Pushkin Tales by Alexander Pushkin (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["891.733"], + "wording": ["1800\u20131917", + "East Indo-European and Celtic literatures", + "Literature", + "Other literatures", + "Russian and East Slavic languages", + "Russian fiction"] + }, + "lcc": { + "code": "PZ3.P979 C" + }, + "subject": { + "0": ["Folklore", + "Russia"], + "2": ["Pushkin, Aleksandr Sergeevich, 1799-1837", + "Translations into English"], + "3": ["Russia", + "Social life and customs", + "Fiction"], + "4": ["Russian poetry"] + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "638057", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "134 p.", + "weight": "1.7 pounds", + "pages": "134 " +}, +"250786873": { + "books_id": "250786873", + "title": "Blessed is the daughter", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Waxman, Meyer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Waxman, Meyer", + "fl": "Meyer Waxman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007HBARS", + "publication": "Shengold Publishers (1961), Edition: 2nd printing.", + "date": "1961", + "summary": "Blessed is the daughter by Meyer Waxman (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM729.W6 W3" + }, + "subject": { + "0": ["Art, Jewish"], + "2": ["Fasts and feasts", + "Judaism"], + "4": ["Jewish women"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1247", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "1581435", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "2.05 pounds" +}, +"250786947": { + "books_id": "250786947", + "title": "Gershom Scholem and the Mystical Dimension of Jewish History (Modern Jewish Masters, 4)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dan, Joseph", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Dan, Joseph", + "fl": "Joseph Dan", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814718124", + "isbn": { + "0": "0814718124", + "2": "9780814718124" + }, + "asin": "0814718124", + "ean": ["0814718124"], + "publication": "NYU Press (1988), 340 pages", + "date": "1988", + "summary": "Gershom Scholem and the Mystical Dimension of Jewish History (Modern Jewish Masters, 4) by Joseph Dan (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .D36" + }, + "subject": [["Mysticism", + "Historiography"], + ["Mysticism", + "Judaism", + "Historiography"], + ["Scholem, Gershom Gerhard, 1897-1982"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4253670", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "340 p.; 8 inches", + "height": "8 inches", + "thickness": "0.86 inches", + "length": "5 inches", + "dimensions": "8 x 5 x 0.86 inches", + "weight": "0.87964442538 pounds", + "pages": "340 " +}, +"250786984": { + "books_id": "250786984", + "title": "From Berlin to Jerusalem: Memories of My Youth", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom", + "primaryauthorrole": "Author", + "secondaryauthor": "Zohn, Harry", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Scholem, Gershom", + "fl": "Gershom Scholem", + "role": "Author" + }, + { + "lf": "Zohn, Harry", + "fl": "Harry Zohn", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1589880730", + "isbn": { + "0": "1589880730", + "2": "9781589880733" + }, + "asin": "1589880730", + "ean": ["1589880730"], + "publication": "Paul Dry Books (2012), 178 pages", + "date": "2012", + "summary": "From Berlin to Jerusalem: Memories of My Youth by Gershom Scholem (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S295 A3413" + }, + "subject": [["Jewish scholars", + "Germany", + "Biography"], + ["Jewish scholars", + "Israel", + "Biography"], + ["Jews", + "Germany", + "Intellectual life"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "1362805", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "178 p.; 8.4 inches", + "height": "8.4 inches", + "thickness": "0.6 inches", + "length": "5.4 inches", + "dimensions": "8.4 x 5.4 x 0.6 inches", + "weight": "0.65 pounds", + "pages": "178 " +}, +"250787025": { + "books_id": "250787025", + "title": "The Synagogue: Its History and Function", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Levy, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levy, Isaac", + "fl": "Isaac Levy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NWVNO2", + "publication": "Vallentine Mitchell (1963), Edition: First Edition", + "date": "1963", + "summary": "The Synagogue: Its History and Function by Isaac Levy (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.65"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion", + "Synagogues"] + }, + "lcc": { + "code": "BM653.L4" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "11549711", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250787078": { + "books_id": "250787078", + "title": "Eyewitness Auschwitz: Three Years in the Gas Chambers (Published in association with the United States Holocaust Memorial Museum)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Muller, Filip", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Muller, Filip", + "fl": "Filip Muller", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1566632714", + "isbn": { + "0": "1566632714", + "2": "9781566632713" + }, + "asin": "1566632714", + "ean": ["8601404246821"], + "publication": "Ivan R. Dee (1999), 192 pages", + "date": "1999", + "summary": "Eyewitness Auschwitz: Three Years in the Gas Chambers (Published in association with the United States Holocaust Memorial Museum) by Filip Muller (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.547243094386"], + "wording": ["1918-", + "German & Central European POW camps", + "German camps in Poland", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II", + "Prisoner-of-War Camps", + "Prisoners of war; medical and social services"] + }, + "lcc": { + "code": "D805.A96 M85" + }, + "subject": [["Prisoners of war", + "Czechoslovakia", + "Biography"], + ["Prisoners of war", + "Poland", + "Biography"], + ["World War, 1939-1945", + "Personal narratives, Czech"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "333779", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 8.2 inches", + "height": "8.2 inches", + "thickness": "0.56 inches", + "length": "5.44 inches", + "dimensions": "8.2 x 5.44 x 0.56 inches", + "weight": "0.52029093832 pounds", + "pages": "192 " +}, +"250787081": { + "books_id": "250787081", + "title": "Israel a Picture Book to Remember Her By", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Clucas Philip (Designed ) Produced By Ted Smart and David Gibbon", + "primaryauthorrole": "Author", + "secondaryauthor": "Ali", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Clucas Philip (Designed ) Produced By Ted Smart and David Gibbon", + "fl": "Clucas Philip (Designed ) Produced By Ted Smart and David Gibbon", + "role": "Author" + }, + { + "lf": "Ali", + "fl": "Ali", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000LC92NI", + "publication": "Crescent Books (1986)", + "date": "1986", + "summary": "Israel a Picture Book to Remember Her By by Clucas Philip (Designed ) Produced By Ted Smart and David Gibbon (1986)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS108 .I798" + }, + "series": ["A Picture Book to Remember Her By"], + "genre": ["Nonfiction", + "Travel"], + "genre_id": ["20275895", + "3578"], + "source": "amazon.com books", + "workcode": "4980346", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250787112": { + "books_id": "250787112", + "title": "The First Jewish Catalog: A Do-It-Yourself Kit", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Siegel, Richard", + "primaryauthorrole": "Editor", + "secondaryauthor": "Strassfeld, Michael|Strassfeld, Sharon", + "secondaryauthorroles": "Editor|Editor", + "authors": [{ + "lf": "Siegel, Richard", + "fl": "Richard Siegel", + "role": "Editor" + }, + { + "lf": "Strassfeld, Michael", + "fl": "Michael Strassfeld", + "role": "Editor" + }, + { + "lf": "Strassfeld, Sharon", + "fl": "Sharon Strassfeld", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600429", + "isbn": { + "0": "0827600429", + "2": "9780827600423" + }, + "asin": "0827600429", + "ean": ["0827600429"], + "publication": "JEWISH PUBLICATON SOCIETY (1973), Edition: First Edition, 320 pages", + "date": "1973", + "summary": "The First Jewish Catalog: A Do-It-Yourself Kit by Richard Siegel (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "BM700.S48" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Jews", + "Bibliography"], + "4": ["Judaism", + "Customs and practices"] + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "29460", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 11.75 inches", + "height": "11.75 inches", + "thickness": "0.72 inches", + "length": "8.23 inches", + "dimensions": "11.75 x 8.23 x 0.72 inches", + "weight": "1.75 pounds", + "pages": "320 " +}, +"250787163": { + "books_id": "250787163", + "title": "Rabbi Harvey vs. the Wisdom Kid: A Graphic Novel of Dueling Jewish Folktales in the Wild West (Rabbi Harvey, 3)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sheinkin, Steve", + "primaryauthorrole": "Illustrator", + "authors": [{ + "lf": "Sheinkin, Steve", + "fl": "Steve Sheinkin", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580234224", + "isbn": { + "0": "1580234224", + "2": "9781580234221" + }, + "asin": "1580234224", + "ean": ["1580234224"], + "publication": "Jewish Lights (2010), Edition: 1, 144 pages", + "date": "2010", + "summary": "Rabbi Harvey vs. the Wisdom Kid: A Graphic Novel of Dueling Jewish Folktales in the Wild West (Rabbi Harvey, 3) by Steve Sheinkin (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["741.5"], + "wording": ["Arts & recreation", + "Comic books, graphic novels, fotonovelas, cartoons, caricatures, comic strips", + "Design & related arts", + "Drawing and drawings"] + }, + "lcc": { + "code": "PN6727.S495 R34" + }, + "series": ["Rabbi Harvey"], + "awards": ["National Jewish Book Award"], + "genre": ["Comics", + "Kids"], + "genre_id": ["4778", + "24"], + "source": "amazon.com books", + "workcode": "9643650", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 9 inches", + "height": "9 inches", + "thickness": "0.35826771617 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.35826771617 inches", + "weight": "0.6 pounds", + "pages": "144 " +}, +"250787193": { + "books_id": "250787193", + "title": "Nazism and German Society, 1933-1945 (Rewriting Histories)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Crew, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Crew, David", + "fl": "David Crew", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0415082390", + "isbn": { + "0": "0415082390", + "2": "9780415082396" + }, + "asin": "0415082404", + "ean": ["0415082404"], + "publication": "Routledge (1994), 332 pages", + "date": "1994", + "summary": "Nazism and German Society, 1933-1945 (Rewriting Histories) by David Crew (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.0943"], + "wording": ["Central Europe And Germany", + "Culture and institutions", + "Europe", + "Social history", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "HN445 .N39" + }, + "subject": [["Germany", + "Economic conditions", + "1918-1945"], + ["Germany", + "Social conditions", + "1933-1945"], + ["National Socialism"], + ["National socialism"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "927916", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "332 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.43 inches", + "dimensions": "8.5 x 5.43 x 0.75 inches", + "weight": "0.99869404686 pounds", + "pages": "332 " +}, +"250787269": { + "books_id": "250787269", + "title": "Jewish Mysticism and Jewish Ethics (Samuel and Althea Stroum Lecutures in Jewish Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dan, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dan, Joseph", + "fl": "Joseph Dan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0295962658", + "isbn": { + "0": "0295962658", + "2": "9780295962658" + }, + "asin": "0295962658", + "ean": ["0295962658"], + "publication": "Univ of Washington Pr (1986), Edition: American First, 133 pages", + "date": "1986", + "summary": "Jewish Mysticism and Jewish Ethics (Samuel and Althea Stroum Lecutures in Jewish Studies) by Joseph Dan (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM526 .D36" + }, + "subject": [["Cabala", + "History"], + ["Hasidism, Medieval", + "History"], + ["Jewish ethics", + "History"], + ["Mysticism", + "Judaism", + "History"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2333404", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "133 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "0.29982867632 pounds", + "pages": "133 " +}, +"250787292": { + "books_id": "250787292", + "title": "The Tattooist of Auschwitz: A Novel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Morris, Heather", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Morris, Heather", + "fl": "Heather Morris", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0062797158", + "isbn": { + "0": "0062797158", + "2": "9780062797155" + }, + "asin": "0062797158", + "ean": ["0062797158"], + "publication": "Harper Paperbacks (2018), Edition: Illustrated, 288 pages", + "date": "2018", + "summary": "The Tattooist of Auschwitz: A Novel by Heather Morris (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["823.92"], + "wording": ["1900-", + "2000-", + "English & Old English literatures", + "English fiction", + "Literature"] + }, + "lcc": { + "code": "PR9639.M668 T38" + }, + "series": ["The Tattooist of Auschwitz"], + "awards": ["Amazon.com Best Books", + "Audie Award", + "Australian Book Industry Awards", + "BookTube Prize", + "British Book Awards", + "Goldsboro Books Glass Bell Award", + "Indie Book Award (Australia)", + "Indies Choice Book Awards", + "International Dublin Literary Award", + "Mid-Continent Public Library Best Books", + "New York Public Library Best Books: For Adults", + "Paul Torday Memorial Prize"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "20634494", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 8 inches", + "height": "8 inches", + "thickness": "0.65 inches", + "length": "5.31 inches", + "dimensions": "8 x 5.31 x 0.65 inches", + "weight": "0.5 pounds", + "pages": "288 " +}, +"250787313": { + "books_id": "250787313", + "title": "All But My Life: A Memoir", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klein, Gerda Weissmann", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klein, Gerda Weissmann", + "fl": "Gerda Weissmann Klein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0809015803", + "isbn": { + "0": "0809015803", + "2": "9780809015801" + }, + "asin": "0809015803", + "ean": ["0809015803"], + "publication": "Hill and Wang (1995), Edition: Expanded, 272 pages", + "date": "1995", + "summary": "All But My Life: A Memoir by Gerda Weissmann Klein (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318092"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135.P6 K536" + }, + "subject": { + "0": ["Bielsko-Bia?a (Poland)", + "Biography"], + "1": ["Bielsko-Bia\u0142a (Poland)", + "Biography"], + "2": ["Holocaust survivors", + "United States", + "Biography"], + "4": ["Holocaust, Jewish (1939-1945)", + "Personal narratives"], + "6": ["Jews", + "Bielsko-Bia\u0142a", + "Biography"], + "7": ["Jews", + "Poland", + "Bielsko-Bia?a", + "Biography"], + "8": ["Klein, Gerda Weissmann, 1924-"], + "9": ["Slave labor", + "Germany"], + "10": ["World War, 1939-1945", + "Conscript labor", + "Germany"], + "11": ["World War, 1939-1945", + "Germany.", + "Conscript labor"], + "12": ["World War, 1939-1945", + "Personal narratives, Jewish"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "228870", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 7.93 inches", + "height": "7.93 inches", + "thickness": "0.759841 inches", + "length": "5.5098315 inches", + "dimensions": "7.93 x 5.5098315 x 0.759841 inches", + "weight": "0.5 pounds", + "pages": "272 " +}, +"250787345": { + "books_id": "250787345", + "title": "Gershom Scholem: The Man and His Work (Suny Series in Judaica) (Suny Judaica: Hermeneutics, Mysticism, and Religion)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mendes-Flohr, Paul", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Mendes-Flohr, Paul", + "fl": "Paul Mendes-Flohr", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791421260", + "isbn": { + "0": "0791421260", + "2": "9780791421260" + }, + "asin": "0791421260", + "ean": ["0791421260"], + "publication": "State University of New York Press (1994), Edition: First Edition, 150 pages", + "date": "1994", + "summary": "Gershom Scholem: The Man and His Work (Suny Series in Judaica) (Suny Judaica: Hermeneutics, Mysticism, and Religion) by Paul Mendes-Flohr (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S295 G4713" + }, + "subject": [["Jewish scholars", + "Israel", + "Biography", + "Congresses"], + ["Mysticism", + "Judaism", + "Historiography", + "Congresses"], + ["Scholem, Gershom Gerhard, 1897-1982", + "Congresses"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3954338", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "150 p.; 8.47 inches", + "height": "8.47 inches", + "thickness": "0.34 inches", + "length": "5.15 inches", + "dimensions": "8.47 x 5.15 x 0.34 inches", + "weight": "0.440924524 pounds", + "pages": "150 " +}, +"250787388": { + "books_id": "250787388", + "title": "On the Kabbalah and its Symbolism (Mysticism and Kabbalah)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom", + "fl": "Gershom Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780805210514", + "isbn": ["9780805210514", + "0805210512"], + "asin": "0805210512", + "ean": ["0805210512"], + "publication": "Schocken (1996), Edition: Revised ed., 240 pages", + "date": "1996", + "summary": "On the Kabbalah and its Symbolism (Mysticism and Kabbalah) by Gershom Scholem (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.16"], + "wording": ["Jewish writings", + "Judaism", + "Kabbalah", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM525.S3753" + }, + "subject": { + "0": ["Cabala", + "History"], + "2": ["GOLEM"], + "3": ["Golem"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "53229", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 8 inches", + "height": "8 inches", + "thickness": "0.64 inches", + "length": "5.24 inches", + "dimensions": "8 x 5.24 x 0.64 inches", + "weight": "0.43651527876 pounds", + "pages": "240 " +}, +"250787431": { + "books_id": "250787431", + "title": "Gershom Scholem (Modern Critical Views)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bloom, Harold", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Bloom, Harold", + "fl": "Harold Bloom", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "155546274X", + "isbn": { + "0": "155546274X", + "2": "9781555462741" + }, + "asin": "155546274X", + "ean": ["155546274X"], + "publication": "Chelsea House Publishers (1987), 240 pages", + "date": "1987", + "summary": "Gershom Scholem (Modern Critical Views) by Harold Bloom (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S295 G465" + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "5574120", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "1.3 pounds", + "pages": "240 " +}, +"250787490": { + "books_id": "250787490", + "title": "What's Bothering Rashi? - Bereishis (What's Bothering Rashi Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonchek, Avigdor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bonchek, Avigdor", + "fl": "Avigdor Bonchek", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873068491", + "isbn": { + "0": "0873068491", + "2": "9780873068499" + }, + "asin": "0873068491", + "ean": ["0873068491"], + "publication": "Philipp Feldheim (1997), Edition: First Edition, 5 pages", + "date": "1997", + "summary": "What's Bothering Rashi? - Bereishis (What's Bothering Rashi Series) by Avigdor Bonchek (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.71"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.3 .B66" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1611459", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "0.6 inches", + "length": "6.7 inches", + "dimensions": "9.3 x 6.7 x 0.6 inches", + "weight": "0.95 pounds" +}, +"250787521": { + "books_id": "250787521", + "title": "Gershom Scholem: Kabbalah and Counter-History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Biale, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Biale, David", + "fl": "David Biale", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674363329", + "isbn": { + "0": "0674363329", + "2": "9780674363328" + }, + "asin": "0674363329", + "ean": ["0674363329"], + "publication": "Harvard University Press (1982), Edition: 2nd Revised ed., 216 pages", + "date": "1982", + "summary": "Gershom Scholem: Kabbalah and Counter-History by David Biale (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S295 B5" + }, + "awards": ["Gustav Arlt Award for Best Dissertation Turned into a Book", + "National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "632563", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "216 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.54 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 0.54 inches", + "weight": "0.59965735264 pounds", + "pages": "216 " +}, +"250787529": { + "books_id": "250787529", + "title": "What's Bothering Rashi? - Shemos (What's Bothering Rashi Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonchek, Avigdor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bonchek, Avigdor", + "fl": "Avigdor Bonchek", + "role": "Author" + }], + "tags": ["Ramban Debate"], + "tagidA": [34002079], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873069064", + "isbn": { + "0": "0873069064", + "2": "9780873069069" + }, + "asin": "0873069064", + "ean": ["0873069064"], + "publication": "Philipp Feldheim (1998), 206 pages", + "date": "1998", + "summary": "What's Bothering Rashi? - Shemos (What's Bothering Rashi Series) by Avigdor Bonchek (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["222.71"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225 .B66" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2090026", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.5 inches", + "thickness": "0.8 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 0.8 inches", + "weight": "1.4 pounds" +}, +"250787774": { + "books_id": "250787774", + "title": "Hebrew Talk: 101 Hebrew Roots And The Stories They Tell, Paperback", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lowin, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lowin, Joseph", + "fl": "Joseph Lowin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0939144484", + "isbn": { + "0": "0939144484", + "2": "9780939144488" + }, + "asin": "0939144484", + "ean": ["0939144484"], + "publication": "EKS Publishing (2004), 207 pages", + "date": "2004", + "summary": "Hebrew Talk: 101 Hebrew Roots And The Stories They Tell, Paperback by Joseph Lowin (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.42"], + "wording": ["Afro-Asiatic languages", + "Etymology of Hebrew", + "Hebrew", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ4603 .L69" + }, + "subject": [["Hebrew language", + "Etymology"], + ["Hebrew language", + "Roots"], + ["Hebrew language", + "Usage"], + ["Hebrew language", + "Word formation"]], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "106653", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "207 p.", + "weight": "0.87 pounds", + "pages": "207 " +}, +"250787826": { + "books_id": "250787826", + "title": "What's Bothering Rashi? -- Vayikra (What's Bothering Rashi Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonchek, Avigdor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bonchek, Avigdor", + "fl": "Avigdor Bonchek", + "role": "Author" + }], + "tags": ["Ramban Debate"], + "tagidA": [34002079], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1583304002", + "isbn": { + "0": "1583304002", + "2": "9781583304006" + }, + "asin": "1583304002", + "ean": ["1583304002"], + "publication": "Feldheim (2002), 198 pages", + "date": "2002", + "summary": "What's Bothering Rashi? -- Vayikra (What's Bothering Rashi Series) by Avigdor Bonchek (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.71"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.B66" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3183066", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250787896": { + "books_id": "250787896", + "title": "The New Rabbi", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Fried, Stephen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fried, Stephen", + "fl": "Stephen Fried", + "role": "Author" + }], + "tags": ["Ramban Debate"], + "tagidA": [34002079], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0553380753", + "isbn": { + "0": "0553380753", + "2": "9780553380750" + }, + "asin": "0553380753", + "ean": ["0553380753"], + "publication": "Bantam (2003), Edition: Reprint, 384 pages", + "date": "2003", + "summary": "The New Rabbi by Stephen Fried (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM225.P5 H374" + }, + "subject": [["Conservative Judaism", + "Pennsylvania", + "Philadelphia", + "History", + "20th century"], + ["Conservative Judaism", + "Philadelphia", + "History"], + ["Har Zion Temple (Philadelphia, Pa.)", + "Personnel management"], + ["Jews", + "Pennsylvania", + "Philadelphia", + "Politics and government"], + ["Jews", + "Philadelphia", + "Politics and government"], + ["Rabbis", + "Pennsylvania", + "Philadelphia", + "Employment"], + ["Rabbis", + "Pennsylvania", + "Philadelphia", + "Office"], + ["Rabbis", + "Philadelphia", + "Employment"], + ["Rabbis", + "Philadelphia", + "Office"], + ["Rabbis", + "Philadelphia.", + "Employment"], + ["Wolpe, Gerald I"]], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "542609", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 8.9 inches", + "height": "8.9 inches", + "thickness": "0.8 inches", + "length": "5.9 inches", + "dimensions": "8.9 x 5.9 x 0.8 inches", + "weight": "1.18 pounds", + "pages": "384 " +}, +"250787918": { + "books_id": "250787918", + "title": "Jewish Gnosticism, Merkabah Mysticism, and Talmudic Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom G.", + "fl": "Gershom G. Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873341783", + "isbn": { + "0": "0873341783", + "2": "9780873341783" + }, + "asin": "0873341783", + "ean": ["0873341783"], + "publication": "The Jewish Theological Seminary Press (2015), 144 pages", + "date": "2015", + "summary": "Jewish Gnosticism, Merkabah Mysticism, and Talmudic Tradition by Gershom G. Scholem (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.81"], + "wording": ["Ancient World", + "Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723.S34" + }, + "subject": [["Mysticism", + "Judaism"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1183622", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 9 inches", + "height": "9 inches", + "thickness": "0.36 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.36 inches", + "weight": "0.90169065158 pounds", + "pages": "144 " +}, +"250787928": { + "books_id": "250787928", + "title": "Prooftexts a Journal of Jewish Literary History (Volume 10)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mintz, Alan", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Mintz, Alan", + "fl": "Alan Mintz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001LQHHF8", + "publication": "The Johns Hopkins University Press (1990), Edition: Number 3", + "date": "1990", + "summary": "Prooftexts a Journal of Jewish Literary History (Volume 10) by Alan Mintz (1990)", + "language": ["Undetermined"], + "language_codeA": ["und"], + "originallanguage_codeA": ["und"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31092030", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250787950": { + "books_id": "250787950", + "title": "Yiddish Proverbs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ayalti, Hanan J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ayalti, Hanan J.", + "fl": "Hanan J. Ayalti", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805200509", + "isbn": { + "0": "0805200509", + "2": "9780805200508" + }, + "asin": "0805200509", + "ean": ["0805200509"], + "publication": "Schocken (1987), 127 pages", + "date": "1987", + "summary": "Yiddish Proverbs by Hanan J. Ayalti (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.9"], + "wording": ["Customs, etiquette & folklore", + "Folklore", + "Proverbs", + "Social sciences"] + }, + "lcc": { + "code": "PN6519.H5 A9" + }, + "subject": [["Proverbs, Yiddish"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "378757", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "127 p.", + "weight": "0.35494424182 pounds", + "pages": "127 " +}, +"250787997": { + "books_id": "250787997", + "title": "Parallel Journeys", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ayer, Eleanor H.", + "primaryauthorrole": "Author", + "secondaryauthor": "Waterford, Helen|Heck, Alfons", + "secondaryauthorroles": "Author|Author", + "authors": [{ + "lf": "Ayer, Eleanor H.", + "fl": "Eleanor H. Ayer", + "role": "Author" + }, + { + "lf": "Waterford, Helen", + "fl": "Helen Waterford", + "role": "Author" + }, + { + "lf": "Heck, Alfons", + "fl": "Alfons Heck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0689832362", + "isbn": { + "0": "0689832362", + "2": "9780689832369" + }, + "asin": "0689832362", + "ean": ["0689832362"], + "publication": "Aladdin (2000), Edition: Reprint, 256 pages", + "date": "2000", + "summary": "Parallel Journeys by Eleanor H. Ayer (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.0860922"], + "wording": ["Biographies, Diaries And Journals", + "Collected biography", + "Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "History, geographic treatment, biography", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D804 .A98" + }, + "subject": { + "0": ["German Americans", + "Biography", + "Juvenile literature"], + "1": ["German Americans", + "Juvenile literature"], + "2": ["Heck, Alfons, 1928-", + "Juvenile literature"], + "3": ["Hitler-Jugend", + "Biography", + "Juvenile literature"], + "4": ["Holocaust survivors", + "United States", + "Biography", + "Juvenile literature"], + "5": ["Holocaust survivors", + "United States", + "Juvenile literature"], + "6": ["Holocaust, Jewish (1939-1945)", + "Juvenile literature"], + "8": ["Jews", + "Frankfurt am Main", + "Juvenile literature"], + "9": ["Jews", + "Germany", + "Frankfurt am Main", + "Biography", + "Juvenile literature"], + "10": ["Waterford, Helen, 1909-", + "Juvenile literature"] + }, + "awards": ["Best Fiction for Young Adults", + "CCBC Choices", + "Christopher Award", + "Colorado Book Award", + "Flora Stieglitz Straus Award", + "Notable Book for a Global Society", + "Sydney Taylor Book Award", + "Tayshas High School Reading List"], + "genre": ["Nonfiction", + "Teen"], + "genre_id": ["20275895", + "631218"], + "source": "amazon.com books", + "workcode": "304670", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 7.63 inches", + "height": "7.625 inches", + "thickness": "0.7 inches", + "length": "5.125 inches", + "dimensions": "7.625 x 5.125 x 0.7 inches", + "weight": "0.39 pounds", + "pages": "256 " +}, +"250788001": { + "books_id": "250788001", + "title": "Junior Jewish Encyclopedia, The", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Asher, Naomi And Hayim Leaf, Eds.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Asher, Naomi And Hayim Leaf, Eds.", + "fl": "Naomi And Hayim Leaf Ben-Asher, Eds.", + "role": "Author" + }], + "tags": ["Ramban Debate"], + "tagidA": [34002079], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000H0KA9E", + "publication": "Shengold (1961), Edition: 4th ed.", + "date": "1961", + "summary": "Junior Jewish Encyclopedia, The by Naomi And Hayim Leaf Ben-Asher, Eds. (1961)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS102 .B4" + }, + "subject": { + "0": ["Jews", + "Dictionaries and encyclopedias", + "Juvenile literature"], + "1": ["Jews", + "Encyclopedias"], + "3": ["Jews", + "Encyclopedias, Juvenile"], + "5": ["Jews", + "Juvenile literature. [from old catalog]"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Reference"], + "genre_id": ["20275895", + "4877"], + "source": "amazon.com books", + "workcode": "1107045", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "3.15 pounds" +}, +"250788056": { + "books_id": "250788056", + "title": "The Course of Our Times", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sachar, Abram Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Abram Leon", + "fl": "Abram Leon Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394474422", + "isbn": { + "0": "0394474422", + "2": "9780394474427" + }, + "asin": "0394474422", + "ean": ["0394474422"], + "publication": "Alfred a Knopf Inc (1972), Edition: First Edition, 635 pages", + "date": "1972", + "summary": "The Course of Our Times by Abram Leon Sachar (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.82"], + "wording": ["1800-", + "1900-1999, 20th century", + "History", + "History & geography", + "World history"] + }, + "lcc": { + "code": "D421 .S23" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "2856985", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "635 p.", + "weight": "3 pounds", + "pages": "635 " +}, +"250788093": { + "books_id": "250788093", + "title": "The Second Jewish Catalog: Sources and Resources", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Strassfeld, Michael", + "primaryauthorrole": "Author", + "secondaryauthor": "Strassfeld, Sharon", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Strassfeld, Michael", + "fl": "Michael Strassfeld", + "role": "Author" + }, + { + "lf": "Strassfeld, Sharon", + "fl": "Sharon Strassfeld", + "role": "Author" + }], + "tags": ["Ramban Debate"], + "tagidA": [34002079], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600844", + "isbn": { + "0": "0827600844", + "2": "9780827600843" + }, + "asin": "0827600844", + "ean": ["0827600844"], + "publication": "Jewish Pubn Society (1976), Edition: First Edition, 464 pages", + "date": "1976", + "summary": "The Second Jewish Catalog: Sources and Resources by Michael Strassfeld (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "BM700.S38" + }, + "subject": { + "0": ["Arts, Jewish", + "United States", + "Directories"], + "2": ["Jewish way of life"], + "4": ["Jews", + "United States", + "Directories"], + "5": ["Jews", + "United States", + "Societies, etc.", + "Directories"], + "6": ["Judaism", + "Customs and practices"] + }, + "genre": ["Nonfiction", + "History", + "Reference", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "4877", + "1944"], + "source": "amazon.com books", + "workcode": "29514", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 10.75 inches", + "height": "10.75 inches", + "thickness": "0.75 inches", + "length": "8.5 inches", + "dimensions": "10.75 x 8.5 x 0.75 inches", + "weight": "1 pound", + "pages": "464 " +}, +"250788177": { + "books_id": "250788177", + "title": "The Secret Holocaust Diaries: The Untold Story of Nonna Bannister", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "George, Denise", + "primaryauthorrole": "Primary Contributor", + "secondaryauthor": "Bannister, Nonna|Tomlin, Carolyn", + "secondaryauthorroles": "Original Author|Primary Contributor", + "authors": [{ + "lf": "George, Denise", + "fl": "Denise George", + "role": "Primary Contributor" + }, + { + "lf": "Bannister, Nonna", + "fl": "Nonna Bannister", + "role": "Original Author" + }, + { + "lf": "Tomlin, Carolyn", + "fl": "Carolyn Tomlin", + "role": "Primary Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1608144712", + "isbn": { + "0": "1608144712", + "2": "9781608144716" + }, + "asin": "1414325479", + "ean": ["1414325479"], + "upc": ["031809125472"], + "publication": "Tyndale House Publishers (2010), Edition: 53780th, 336 pages", + "date": "2010", + "summary": "The Secret Holocaust Diaries: The Untold Story of Nonna Bannister by Denise George (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DK508.B36 A3" + }, + "awards": ["Audie Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "8035965", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8.24 inches", + "height": "8.24 inches", + "thickness": "0.9 inches", + "length": "5.6 inches", + "dimensions": "8.24 x 5.6 x 0.9 inches", + "weight": "0.78 pounds", + "pages": "336 " +}, +"250788255": { + "books_id": "250788255", + "title": "Days of Sorrow and Pain: Leo Baeck and the Berlin Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baker, Leonard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baker, Leonard", + "fl": "Leonard Baker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0025063405", + "isbn": { + "0": "0025063405", + "2": "9780025063402" + }, + "asin": "0025063405", + "ean": ["0025063405"], + "publication": "Macmillan (1978), 396 pages", + "date": "1978", + "summary": "Days of Sorrow and Pain: Leo Baeck and the Berlin Jews by Leonard Baker (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.B32 B34" + }, + "subject": { + "0": ["Baeck, Leo, 1873-1956"], + "1": ["Germany", + "History", + "1933-1945"], + "3": ["Jews", + "Germany", + "History"], + "4": ["Jews", + "Germany", + "History", + "1933-1945"], + "5": ["Rabbis", + "Germany", + "Biography"] + }, + "awards": ["Pulitzer Prize"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "944323", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "396 p.", + "height": "9.2 inches", + "thickness": "0.8 inches", + "length": "6.1 inches", + "dimensions": "9.2 x 6.1 x 0.8 inches", + "weight": "1 pound", + "pages": "396 " +}, +"250788312": { + "books_id": "250788312", + "title": "Judaism and Christianity;: Essays,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baeck, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baeck, Leo", + "fl": "Leo Baeck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DFGW2", + "publication": "Jewish Publication Society of America (1958), Edition: First Edition, 292 pages", + "date": "1958", + "summary": "Judaism and Christianity;: Essays, by Leo Baeck (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Undetermined"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM535.B2" + }, + "subject": { + "0": ["Christianity and other religions", + "Judaism"], + "2": ["Judaism", + "Christianity"], + "3": ["Judaism", + "Influence"], + "5": ["Judaism", + "Relations", + "Christianity"] + }, + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "2048625", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "292 p.", + "weight": "1.58 pounds", + "pages": "292 " +}, +"250788339": { + "books_id": "250788339", + "title": "The religion of ethical nationhood;: Judaism's contribution to world peace,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaplan, Mordecai Menahem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Mordecai Menahem", + "fl": "Mordecai Menahem Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CK9BM", + "publication": "Macmillan (1970), 205 pages", + "date": "1970", + "summary": "The religion of ethical nationhood;: Judaism's contribution to world peace, by Mordecai Menahem Kaplan (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.K28" + }, + "subject": [["Judaism"], + ["judaism"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "5246186", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "205 p.", + "weight": "1 pound", + "pages": "205 " +}, +"250788355": { + "books_id": "250788355", + "title": "Judaism: A Portrait", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Leon", + "primaryauthorrole": "Author", + "secondaryauthor": "Tindall, Gillian", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Roth, Leon", + "fl": "Leon Roth", + "role": "Author" + }, + { + "lf": "Tindall, Gillian", + "fl": "Gillian Tindall", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805203443", + "isbn": { + "0": "0805203443", + "2": "9780805203448" + }, + "asin": "0805203443", + "ean": ["0805203443"], + "publication": "Schocken, 240 pages", + "summary": "Judaism: A Portrait by Leon Roth", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561.R65" + }, + "subject": [["Judaism"], + ["judaism"]], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1107698", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "0.65 pounds", + "pages": "240 " +}, +"250788360": { + "books_id": "250788360", + "title": "Wolfson of Harvard: Portrait of a scholar", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wolfson) Schwartz, Leo W", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wolfson) Schwartz, Leo W", + "fl": "Leo W Wolfson) Schwartz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600984", + "isbn": { + "0": "0827600984", + "2": "9780827600980" + }, + "asin": "0827600984", + "ean": ["0827600984"], + "publication": "Philadelphia : Jewish Publication Society Of America (1978), 283 pages", + "date": "1978", + "summary": "Wolfson of Harvard: Portrait of a scholar by Leo W Wolfson) Schwartz (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["191"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of United States and Canada"] + }, + "lcc": { + "code": "B945.W584 S39" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy"], + "genre_id": ["20275895", + "1240", + "1599", + "66879"], + "source": "amazon.com books", + "workcode": "1629316", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "283 p.", + "height": "9.1 inches", + "thickness": "1.1 inches", + "length": "6.1 inches", + "dimensions": "9.1 x 6.1 x 1.1 inches", + "weight": "1.6 pounds", + "pages": "283 " +}, +"250788433": { + "books_id": "250788433", + "title": "The Second Book of the Bible Exodus", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jacob, Benno", + "primaryauthorrole": "Author", + "secondaryauthor": "Hahn, Joachim|Mayer, Shlomo|J\u00fcrgensen, Amuth", + "secondaryauthorroles": "Author|Author|Author", + "authors": [{ + "lf": "Jacob, Benno", + "fl": "Benno Jacob", + "role": "Author" + }, + { + "lf": "Hahn, Joachim", + "fl": "Joachim Hahn", + "role": "Author" + }, + { + "lf": "Mayer, Shlomo", + "fl": "Shlomo Mayer", + "role": "Author" + }, + { + "lf": "J\u00fcrgensen, Amuth", + "fl": "Amuth J\u00fcrgensen", + "role": "Author" + }], + "tags": ["Translated by Walter Jacob"], + "tagidA": [34002193], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "3766835157", + "isbn": { + "0": "3766835157", + "2": "9783766835154" + }, + "asin": "3766835157", + "ean": ["3766835157"], + "publication": "Calwer (1997)", + "date": "1997", + "summary": "The Second Book of the Bible Exodus by Benno Jacob (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["222.1206"], + "wording": ["Exodus", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1245.J274" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2113728", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "9.84 inches", + "height": "9.8425 inches", + "thickness": "2.55905 inches", + "length": "7.16534 inches", + "dimensions": "9.8425 x 7.16534 x 2.55905 inches", + "weight": "4.16453212918 pounds" +}, +"250788467": { + "books_id": "250788467", + "title": "Conservative Judaism: An American Religious Movement", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sklare, Marshall", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sklare, Marshall", + "fl": "Marshall Sklare", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1258277867", + "isbn": { + "0": "1258277867", + "2": "9781258277864" + }, + "asin": "1258277867", + "ean": ["1258277867"], + "publication": "Literary Licensing, LLC (2012), 296 pages", + "date": "2012", + "summary": "Conservative Judaism: An American Religious Movement by Marshall Sklare (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197 .S45" + }, + "subject": [["Conservative Judaism"], + ["Conservative Judaism", + "United States"]], + "genre": ["Nonfiction", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "1944", + "5686"], + "source": "amazon.com books", + "workcode": "3120306", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "296 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.62 inches", + "length": "5.98 inches", + "dimensions": "9.02 x 5.98 x 0.62 inches", + "weight": "0.88 pounds", + "pages": "296 " +}, +"250788527": { + "books_id": "250788527", + "title": "Formative Judaism, Third Series: Torah, Pharisees, and Rabbis", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891306331", + "isbn": { + "0": "0891306331", + "2": "9780891306337" + }, + "asin": "0891306331", + "ean": ["0891306331"], + "publication": "University of South Florida (1983), 212 pages", + "date": "1983", + "summary": "Formative Judaism, Third Series: Torah, Pharisees, and Rabbis by Jacob Neusner (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177 .N4724" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "16310224", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "212 p.; 8.98 inches", + "height": "8.98 inches", + "thickness": "0.48 inches", + "length": "5.96 inches", + "dimensions": "8.98 x 5.96 x 0.48 inches", + "weight": "0.6393405598 pounds", + "pages": "212 " +}, +"250788562": { + "books_id": "250788562", + "title": "The promise of Buber;: Desultory Philippics and Irenic affirmations, (The Promise of theology)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Streiker, Lowell D", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Streiker, Lowell D", + "fl": "Lowell D Streiker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BZ40Y", + "publication": "Lippincott (1969), Edition: First Edition, 92 pages", + "date": "1969", + "summary": "The promise of Buber;: Desultory Philippics and Irenic affirmations, (The Promise of theology) by Lowell D Streiker (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["193"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of Germany and Austria"] + }, + "lcc": { + "code": "B3213.B84 S7" + }, + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "995441", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "92 p.", + "weight": "0.6 pounds", + "pages": "92 " +}, +"250788578": { + "books_id": "250788578", + "title": "Formative Judaism, Second Series: Religious, Historical, and Literary Studies", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891305947", + "isbn": { + "0": "0891305947", + "2": "9780891305941" + }, + "asin": "0891306145", + "ean": ["0891306145"], + "publication": "University Of South Florida (1983), 198 pages", + "date": "1983", + "summary": "Formative Judaism, Second Series: Religious, Historical, and Literary Studies by Jacob Neusner (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177 .N472" + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "3507129", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "198 p.; 8.86 inches", + "height": "8.86 inches", + "thickness": "0.46 inches", + "length": "5.94 inches", + "dimensions": "8.86 x 5.94 x 0.46 inches", + "weight": "0.59083886216 pounds", + "pages": "198 " +}, +"250788603": { + "books_id": "250788603", + "title": "The Origin and Meaning of Hasidism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0391035495", + "isbn": { + "0": "0391035495", + "2": "9780391035492" + }, + "asin": "0391035495", + "ean": ["0391035495"], + "publication": "Humanities Press (1988), Edition: Reprint, 264 pages", + "date": "1988", + "summary": "The Origin and Meaning of Hasidism by Martin Buber (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296.833"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.B843" + }, + "subject": [["Hasidism", + "History"]], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "583481", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "264 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "5.25 inches", + "length": "0.75 inches", + "dimensions": "8.25 x 0.75 x 5.25 inches", + "weight": "0.7 pounds", + "pages": "264 " +}, +"250788670": { + "books_id": "250788670", + "title": "Tales of the Hasidim: The Early Masters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000UUWNKK", + "publication": "Schocken Books (1947), Edition: First Edition, 335 pages", + "date": "1947", + "summary": "Tales of the Hasidim: The Early Masters by Martin Buber (1947)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.B7783" + }, + "subject": { + "0": ["Hasidic parables"], + "2": ["Hasidim", + "Legends"] + }, + "series": ["Tales of the Hasidim"], + "originaltitle": "Die Erz\u00e4hlungen der Chassidim", + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2445069", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "335 p.", + "weight": "1 pound", + "pages": "335 " +}, +"250788684": { + "books_id": "250788684", + "title": "New Orleans/Vieux Carré", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Donnels, Johnny, and Schulte, Joe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Donnels, Johnny, and Schulte, Joe", + "fl": "Johnny Donnels, and Schulte, Joe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B003GYO2BU", + "publication": "Starving Artist Press (1973)", + "date": "1973", + "summary": "New Orleans/Vieux Carré by Johnny Donnels, and Schulte, Joe (1973)", + "ddc": { + "code": ["779.092"], + "wording": ["Arts & recreation", + "Collections by individual photographers", + "Photographic images", + "Photographs by origin of artist", + "Photography, computer art, film, video"] + }, + "lcc": { + "code": "TR654.D68" + }, + "subject": [["New Orleans (La.)", + "Pictorial works"], + ["Photography, Artistic"]], + "genre": ["Nonfiction", + "Art & Design"], + "genre_id": ["20275895", + "9985304"], + "source": "amazon.com books", + "workcode": "6173423", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250788715": { + "books_id": "250788715", + "title": "Tales of the Hasidim: The Later Masters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "secondaryauthor": "Marx, Olga", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }, + { + "lf": "Marx, Olga", + "fl": "Olga Marx", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002QC86AG", + "publication": "Schocken Books (1961), 352 pages", + "date": "1961", + "summary": "Tales of the Hasidim: The Later Masters by Martin Buber (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["371.9"], + "wording": ["Education", + "Education of special classes", + "Schools and their activities; special education", + "Social sciences"] + }, + "lcc": { + "code": "BM198.B7783" + }, + "subject": { + "0": ["Hasidic parables"], + "2": ["Hasidim", + "Legends"] + }, + "series": ["Tales of the Hasidim"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "331723", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.", + "weight": "0.8 pounds", + "pages": "352 " +}, +"250788723": { + "books_id": "250788723", + "title": "The Prophetic Faith", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "secondaryauthor": "Levenson, Jon D.", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }, + { + "lf": "Levenson, Jon D.", + "fl": "Jon D. Levenson", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691166242", + "isbn": { + "0": "0691166242", + "2": "9780691166247" + }, + "asin": "0691166242", + "ean": ["0691166242"], + "publication": "Princeton University Press (2015), 344 pages", + "date": "2015", + "summary": "The Prophetic Faith by Martin Buber (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1505.B762" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "244647", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "344 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 1 inches", + "weight": "1.00089866948 pounds", + "pages": "344 " +}, +"250788762": { + "books_id": "250788762", + "title": "Leo Baeck: teacher of Theresienstadt,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedlander, Albert H", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friedlander, Albert H", + "fl": "Albert H Friedlander", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BU44U", + "publication": "Holt, Rinehart, and Winston (1968), Edition: First Edition, 294 pages", + "date": "1968", + "summary": "Leo Baeck: teacher of Theresienstadt, by Albert H Friedlander (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.B32 F7" + }, + "subject": [["Baeck, Leo, 1873-1956"], + ["Judaism", + "Germany", + "History"], + ["Judaism", + "Germany", + "History", + "20th century"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Business", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "20245", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "448019", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250788827": { + "books_id": "250788827", + "title": "The Legend of the Baal-Shem", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "secondaryauthor": "Friedman, Maurice", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }, + { + "lf": "Friedman, Maurice", + "fl": "Maurice Friedman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691043892", + "isbn": { + "0": "0691043892", + "2": "9780691043890" + }, + "asin": "0691043892", + "ean": ["0691043892"], + "publication": "Princeton University Press (1995), Edition: Reprint, 224 pages", + "date": "1995", + "summary": "The Legend of the Baal-Shem by Martin Buber (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532 .B7813" + }, + "subject": { + "0": ["Ba?al Shem ?Tov, ca. 1700-1760", + "Legends"], + "1": ["Hasidim", + "Legends"], + "3": ["Hasidism"], + "5": ["Israel ben Eliezer, Ba?al-Shem Tob, called BeSHT, 1700 (ca)-1760"], + "6": ["Legends, Jewish"] + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "53258", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "224 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.57 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.57 inches", + "weight": "0.54 pounds", + "pages": "224 " +}, +"250788888": { + "books_id": "250788888", + "title": "Martin Buber; an intimate portrait", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hodes, Aubrey", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hodes, Aubrey", + "fl": "Aubrey Hodes", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CF28C", + "publication": "Viking Press (1971), 242 pages", + "date": "1971", + "summary": "Martin Buber; an intimate portrait by Aubrey Hodes (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0924"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "B3213.B84 H6" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "4309457", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"250788917": { + "books_id": "250788917", + "title": "Questions Jews Ask: Reconstructionist Answers Reconstructionist Answers Reconstructionist Answers Reconstructionist Answers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Mordecai M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Mordecai M.", + "fl": "Mordecai M. Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000PWCXZI", + "publication": "Reconstructionist Press (1956), Edition: First Edition", + "date": "1956", + "summary": "Questions Jews Ask: Reconstructionist Answers Reconstructionist Answers Reconstructionist Answers Reconstructionist Answers by Mordecai M. Kaplan (1956)", + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.K3" + }, + "subject": { + "0": ["Questions and answers", + "Jews"], + "2": ["Reconstructionist Judaism"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1591760", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.6 pounds" +}, +"250788939": { + "books_id": "250788939", + "title": "The Garden of Emuna: A Practical Guide to Life", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Arush, Rabbi Shalom", + "primaryauthorrole": "Author", + "secondaryauthor": "Translated by Rabbi Lazer Brody", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Arush, Rabbi Shalom", + "fl": "Rabbi Shalom Arush", + "role": "Author" + }, + { + "lf": "Translated by Rabbi Lazer Brody", + "fl": "Translated by Rabbi Lazer Brody", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9659134215", + "isbn": { + "0": "9659134215", + "2": "9789659134212" + }, + "asin": "9659134215", + "ean": ["9659134215"], + "publication": "Chut Shel Chessed Institutions (2009), Edition: 3rd, 292 pages", + "date": "2009", + "summary": "The Garden of Emuna: A Practical Guide to Life by Rabbi Shalom Arush (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["158"], + "wording": ["Applied psychology", + "Philosophy & psychology", + "Psychology"] + }, + "lcc": { + "code": "BM729.F3 A77513" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "4137453", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "292 p.", + "height": "8.2 inches", + "thickness": "0.7 inches", + "length": "5.2 inches", + "dimensions": "8.2 x 5.2 x 0.7 inches", + "weight": "0.79 pounds", + "pages": "292 " +}, +"250789113": { + "books_id": "250789113", + "title": "Mordecai M. Kaplan: An Evaluation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eisenstein, Ira", + "primaryauthorrole": "Editor", + "secondaryauthor": "Kohn, Eugene", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Eisenstein, Ira", + "fl": "Ira Eisenstein", + "role": "Editor" + }, + { + "lf": "Kohn, Eugene", + "fl": "Eugene Kohn", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0935457119", + "isbn": { + "0": "0935457119", + "2": "9780935457117" + }, + "asin": "0935457119", + "ean": ["0935457119"], + "publication": "Reconstructionist Press (1952), Edition: First Edition, 324 pages", + "date": "1952", + "summary": "Mordecai M. Kaplan: An Evaluation by Ira Eisenstein (1952)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "8582504", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "324 p.", + "weight": "1.2 pounds", + "pages": "324 " +}, +"250789116": { + "books_id": "250789116", + "title": "The Beirut massacre: The complete Kahan Commission report", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kahan Commission", + "primaryauthorrole": "Author", + "secondaryauthor": "Eban, Abba", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Kahan Commission", + "fl": "Kahan Commission", + "role": "Author" + }, + { + "lf": "Eban, Abba", + "fl": "Abba Eban", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0943828554", + "isbn": { + "0": "0943828554", + "2": "9780943828558" + }, + "asin": "0943828554", + "ean": ["0943828554"], + "publication": "Karz-Cohl (1983), Edition: First Edition, 136 pages", + "date": "1983", + "summary": "The Beirut massacre: The complete Kahan Commission report by Kahan Commission (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.92"], + "wording": ["History & geography", + "History of Asia", + "Lebanon", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS87.53 .I85" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "3727077", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "136 p.", + "weight": "0.75 pounds", + "pages": "136 " +}, +"250789209": { + "books_id": "250789209", + "title": "The Future of American Jew", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00L2OXKF0", + "publication": "The Macmillan Company, Edition: First Edition", + "summary": "The Future of American Jew", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "E184.J5 K15" + }, + "subject": { + "0": ["Jews", + "Civilization"], + "2": ["Jews", + "United States"], + "4": ["Judaism", + "United States"] + }, + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "1599", + "66879", + "1944", + "5686"], + "source": "amazon.com books", + "workcode": "23474", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"250789218": { + "books_id": "250789218", + "title": "Studies in Midrash and Related Literature (JPS Scholar of Distinction Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldin, Judah", + "primaryauthorrole": "Author", + "secondaryauthor": "Tigay, Jeffrey H.|Eichler, Barry L.", + "secondaryauthorroles": "Editor|Editor", + "authors": [{ + "lf": "Goldin, Judah", + "fl": "Judah Goldin", + "role": "Author" + }, + { + "lf": "Tigay, Jeffrey H.", + "fl": "Jeffrey H. Tigay", + "role": "Editor" + }, + { + "lf": "Eichler, Barry L.", + "fl": "Barry L. Eichler", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602774", + "isbn": { + "0": "0827602774", + "2": "9780827602779" + }, + "asin": "0827602774", + "ean": ["0827602774"], + "publication": "University of Nebraska Press (1988), Edition: First Edition, 419 pages", + "date": "1988", + "summary": "Studies in Midrash and Related Literature (JPS Scholar of Distinction Series) by Judah Goldin (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM514 .G65" + }, + "subject": [["Aggada", + "Criticism, interpretation, etc"], + ["Judaism", + "Essence, genius, nature"], + ["Midrash", + "History and criticism"]], + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "1249936", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "419 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.5 inches", + "pages": "419 " +}, +"250789219": { + "books_id": "250789219", + "title": "As a Driven Leaf", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Rabbi Milton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinberg, Rabbi Milton", + "fl": "Rabbi Milton Steinberg", + "role": "Author" + }], + "tags": ["Kahan Commission"], + "tagidA": [34002228], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874419506", + "isbn": { + "0": "0874419506", + "2": "9780874419504" + }, + "asin": "0874419506", + "ean": ["0874419506"], + "publication": "Behrman House (1939), 480 pages", + "date": "1939", + "summary": "As a Driven Leaf by Rabbi Milton Steinberg (1939)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3537.T32343 A9" + }, + "subject": { + "0": ["Biographical fiction"], + "2": ["Elisha ben Avuyah, ca. 70-ca. 135", + "Fiction"], + "3": ["Heretics, Jewish", + "Fiction"], + "5": ["Historical Fiction"], + "7": ["Historical fiction"], + "9": ["Jewish fiction"], + "11": ["Jews", + "Fiction"], + "12": ["Jews", + "History", + "168 B.C.-135 A.D.", + "Fiction"], + "13": ["biographical fiction"], + "14": ["historical fiction"] + }, + "awards": ["Publisher's Weekly Listen Up Award", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "72576", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "480 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 1 inches", + "weight": "1.25 pounds", + "pages": "480 " +}, +"250789251": { + "books_id": "250789251", + "title": "Studies in the Bible and Jewish Thought (A JPS Scholar of Distinction Book)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenberg, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Moshe", + "fl": "Moshe Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827605048", + "isbn": { + "0": "0827605048", + "2": "9780827605046" + }, + "asin": "0827605048", + "ean": ["0827605048"], + "publication": "JEWISH PUBLICATON SOCIETY (1995), Edition: First Edition, 484 pages", + "date": "1995", + "summary": "Studies in the Bible and Jewish Thought (A JPS Scholar of Distinction Book) by Moshe Greenberg (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1171 .G73" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"], + ["Bible. O.T.", + "Criticism, interpretation, etc., Jewish"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1891922", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "484 p.; 9.57 inches", + "height": "9.57 inches", + "thickness": "1.59 inches", + "length": "6.56 inches", + "dimensions": "9.57 x 6.56 x 1.59 inches", + "weight": "1.9 pounds", + "pages": "484 " +}, +"250789326": { + "books_id": "250789326", + "title": "Jewish Expression", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldin, Judah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldin, Judah", + "fl": "Judah Goldin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300019750", + "isbn": { + "0": "0300019750", + "2": "9780300019759" + }, + "asin": "0300019483", + "ean": ["0300019483"], + "publication": "Yale University Press (1976), Edition: Reprint, 470 pages", + "date": "1976", + "summary": "Jewish Expression by Judah Goldin (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM155 .J48" + }, + "subject": { + "0": ["Judaism", + "History"], + "2": ["Judaism", + "history"] + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "2624938", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "470 p.", + "height": "8.5 inches", + "thickness": "1.2 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1.2 inches", + "weight": "0.000625 pounds", + "pages": "470 " +}, +"250789347": { + "books_id": "250789347", + "title": "A Night to Remember: The Haggadah of Contemporary Voices (Hebrew -English) (English and Hebrew Edition)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Mishael Zion & Noam Zion", + "primaryauthorrole": "Author", + "secondaryauthor": "Kichka, Michel", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Mishael Zion & Noam Zion", + "fl": "Mishael Zion & Noam Zion", + "role": "Author" + }, + { + "lf": "Kichka, Michel", + "fl": "Michel Kichka", + "role": "Illustrator" + }], + "tags": ["Kahan Commission"], + "tagidA": [34002228], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0966474066", + "isbn": { + "0": "0966474066", + "2": "9780966474060" + }, + "asin": "0966474066", + "ean": ["0966474066"], + "publication": "Zion Holiday Publications (2007), 156 pages", + "date": "2007", + "summary": "A Night to Remember: The Haggadah of Contemporary Voices (Hebrew -English) (English and Hebrew Edition) by Mishael Zion & Noam Zion (2007)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM674 .Z55" + }, + "genre": ["Nonfiction", + "Religion & Spirituality", + "Tween"], + "genre_id": ["20275895", + "1944", + "1191"], + "source": "amazon.com books", + "workcode": "3059898", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "156 p.; 9.75 x 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "9.75 inches", + "dimensions": "8.5 x 9.75 x 0.75 inches", + "weight": "1.45 pounds", + "pages": "156 " +}, +"250789367": { + "books_id": "250789367", + "title": "Elie Wiesel: Witness for Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stern, Ellen Norman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stern, Ellen Norman", + "fl": "Ellen Norman Stern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870687662", + "isbn": { + "0": "0870687662", + "2": "9780870687662" + }, + "asin": "0870687662", + "ean": ["0870687662"], + "publication": "Ktav Pub & Distributors Inc (1982), 199 pages", + "date": "1982", + "summary": "Elie Wiesel: Witness for Life by Ellen Norman Stern (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 Z88" + }, + "genre": ["Fiction", + "Biography & Memoir"], + "genre_id": ["17160326", + "1240"], + "source": "amazon.com books", + "workcode": "7748227", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "199 p.", + "weight": "1.1 pounds", + "pages": "199 " +}, +"250789408": { + "books_id": "250789408", + "title": "Martin Buber: Prophet of Religious Secularism (Abrahamic Dialogues)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moore S.J., Donald", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Moore S.J., Donald", + "fl": "Donald Moore S.J.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0823216403", + "isbn": { + "0": "0823216403", + "2": "9780823216406" + }, + "asin": "0823216403", + "ean": ["0823216403"], + "publication": "Fordham University Press (1996), Edition: 2, 298 pages", + "date": "1996", + "summary": "Martin Buber: Prophet of Religious Secularism (Abrahamic Dialogues) by Donald Moore S.J. (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "B3213.B84 M66" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "448020", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "298 p.; 8.7 x 5.7 inches", + "height": "5.7 inches", + "thickness": "0.9 inches", + "length": "8.7 inches", + "dimensions": "5.7 x 8.7 x 0.9 inches", + "weight": "0.98 pounds", + "pages": "298 " +}, +"250789422": { + "books_id": "250789422", + "title": "The Jews of Silence", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Gilbert, Martin", + "secondaryauthorroles": "Afterword", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }, + { + "lf": "Gilbert, Martin", + "fl": "Martin Gilbert", + "role": "Afterword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805208267", + "isbn": { + "0": "0805208267", + "2": "9780805208269" + }, + "asin": "0805208267", + "ean": ["0805208267"], + "publication": "Schocken (2011), Edition: Subsequent, 144 pages", + "date": "2011", + "summary": "The Jews of Silence by Elie Wiesel (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.R92 W5313" + }, + "subject": { + "0": ["Jewish authors", + "Soviet Union.", + "Travel"], + "1": ["Jewish authors", + "Travel", + "Soviet Union"], + "2": ["Jews", + "Persecutions", + "Soviet Union"], + "3": ["Jews", + "Soviet Union.", + "Persecutions"], + "4": ["Soviet Union", + "Description and travel"], + "6": ["Soviet Union", + "Ethnic relations"], + "8": ["Wiesel, Elie, 1928-", + "Travel", + "Soviet Union"] + }, + "genre": ["Nonfiction", + "History", + "Travel"], + "genre_id": ["20275895", + "1599", + "3578"], + "source": "amazon.com books", + "workcode": "1052121", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 8 inches", + "height": "8 inches", + "thickness": "0.4 inches", + "length": "5.2 inches", + "dimensions": "8 x 5.2 x 0.4 inches", + "weight": "0.35053499658 pounds", + "pages": "144 " +},"250789458": { + "books_id": "250789458", + "title": "The Gates of the Forest: A Novel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080521044X", + "isbn": { + "0": "080521044X", + "2": "9780805210446" + }, + "asin": "080521044X", + "ean": ["080521044X"], + "publication": "Schocken (1995), 240 pages", + "date": "1995", + "summary": "The Gates of the Forest: A Novel by Elie Wiesel (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["843.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 P613" + }, + "originaltitle": "Les Portes de la Foret", + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "113780", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 7.98 inches", + "height": "7.98 inches", + "thickness": "0.54 inches", + "length": "5.16 inches", + "dimensions": "7.98 x 5.16 x 0.54 inches", + "weight": "0.43651527876 pounds", + "pages": "240 " +}, +"250789483": { + "books_id": "250789483", + "title": "1973 book THE OATH by ELIE WIESEL Nobel Prize Winner book club edition HC DJ", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "tags": ["Kahan Commission"], + "tagidA": [34002228], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B084M5GY2Y", + "publication": "Generic", + "summary": "1973 book THE OATH by ELIE WIESEL Nobel Prize Winner book club edition HC DJ", + "originallanguage": ["French"], + "originallanguage_codeA": ["fre"], + "ddc": { + "code": ["843.9"], + "wording": ["1900-", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 S413" + }, + "originaltitle": "Le serment de Kolvilla\u0300g", + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "287456", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250789508": { + "books_id": "250789508", + "title": "Life and Death in the Third Reich", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fritzsche, Peter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fritzsche, Peter", + "fl": "Peter Fritzsche", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674034651", + "isbn": { + "0": "0674034651", + "2": "9780674034655" + }, + "asin": "0674034651", + "ean": ["0674034651"], + "publication": "Belknap Press: An Imprint of Harvard University Press (2009), Edition: 1, 384 pages", + "date": "2009", + "summary": "Life and Death in the Third Reich by Peter Fritzsche (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "DD256 .F747" + }, + "subject": [["Collective memory", + "Germany"], + ["Germany", + "History", + "1933-1945"], + ["Germany", + "History", + "20th century"], + ["Holocaust, Jewish (1939-1945)", + "Germany", + "Causes"], + ["National Socialism"], + ["National socialism"]], + "originaltitle": "Life and Death in the Third Reich", + "awards": ["Cundill History Prize"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "4743763", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1 inches", + "weight": "0.8 pounds", + "pages": "384 " +}, +"250789522": { + "books_id": "250789522", + "title": "The Oath: A Novel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }], + "tags": ["Kahan Commission"], + "tagidA": [34002228], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00B3GMMTC", + "publication": "Schocken (2013), Edition: Reissue, 298 pages", + "date": "2013", + "summary": "The Oath: A Novel by Elie Wiesel (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["843.9"], + "wording": ["1900-", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 S413" + }, + "originaltitle": "Le serment de Kolvilla\u0300g", + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "287456", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"250789694": { + "books_id": "250789694", + "title": "Martin Buber", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Smith, R. G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Smith, R. G.", + "fl": "R. G. Smith", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0718810600", + "isbn": { + "0": "0718810600", + "2": "9780718810603" + }, + "asin": "0718810600", + "ean": ["0718810600"], + "publication": "The Carey Kingsgate Press (1966), 46 pages", + "date": "1966", + "summary": "Martin Buber by R. G. Smith (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["193"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of Germany and Austria"] + }, + "lcc": { + "code": "B3213.B84 S6" + }, + "subject": [["Buber, Martin, 1878-1965"]], + "series": ["Makers of Contemporary Theology"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "464162", + "entrydate": "2023-10-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"250926814": { + "books_id": "250926814", + "title": "A Treasury of Jewish Quotations", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baron, Joseph L.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Baron, Joseph L.", + "fl": "Joseph L. Baron", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CMX2V", + "publication": "A. S. Barnes & Co. (1965), Edition: New Revised, 623 pages", + "date": "1965", + "summary": "A Treasury of Jewish Quotations by Joseph L. Baron (1965)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.882"], + "wording": ["Anthologies of short prose (quotations, jokes, anecdotes, etc.)", + "Collections of literary texts from more than two literatures", + "Collections of miscellaneous writings", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6095.J4 T74" + }, + "subject": [["Jews", + "Quotations"]], + "genre": ["Reference", + "Religion & Spirituality"], + "genre_id": ["4877", + "1944"], + "source": "amazon.com books", + "workcode": "205717", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250926864": { + "books_id": "250926864", + "title": "The liberation of the Jew", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Memmi, Albert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Memmi, Albert", + "fl": "Albert Memmi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1399951521", + "isbn": { + "0": "1399951521", + "2": "9781399951524" + }, + "asin": "B0006BOPEU", + "ean": ["1399951521"], + "publication": "Orion Press (1966), Edition: First Edition, 303 pages", + "date": "1966", + "summary": "The liberation of the Jew by Albert Memmi (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["301.451924"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS143.M3832" + }, + "subject": [["Jews"]], + "genre": ["Nonfiction", + "Anthropology", + "History", + "Philosophy", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "5022", + "1599", + "66879", + "1944", + "5686"], + "source": "amazon.com books", + "workcode": "783960", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250926888": { + "books_id": "250926888", + "title": "An Anthology of Jewish Humour and Maxims", + "sortcharacter": "4", + "public": "true", + "primaryauthor": "Teitelbaum, Elsa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Teitelbaum, Elsa", + "fl": "Elsa Teitelbaum", + "role": "Author" + }], + "tags": ["humor"], + "tagidA": [142], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000IQJP7A", + "publication": "Pardes Publishing House (1945)", + "date": "1945", + "summary": "An Anthology of Jewish Humour and Maxims by Elsa Teitelbaum (1945)", + "ddc": { + "code": ["808.87"], + "wording": ["Collections of humor and satire", + "Collections of literary texts from more than two literatures", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.H4 T4" + }, + "subject": { + "0": ["Jewish wit and humor"], + "2": ["Maxims, Jewish"] + }, + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "1815329", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250926964": { + "books_id": "250926964", + "title": "Coat of Many Colors: Pages from Jewish Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shenker, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shenker, Israel", + "fl": "Israel Shenker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385158114", + "isbn": { + "0": "0385158114", + "2": "9780385158114" + }, + "asin": "0385158114", + "ean": ["0385158114"], + "publication": "Doubleday (1985), Edition: First Edition, 395 pages", + "date": "1985", + "summary": "Coat of Many Colors: Pages from Jewish Life by Israel Shenker (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "BM45 .S465" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Israel"], + "4": ["Jews", + "Intellectual life"], + "6": ["Judaism"], + "8": ["judaism"] + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1206558", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "395 p.", + "height": "9.5 inches", + "thickness": "1.3 inches", + "length": "6.7 inches", + "dimensions": "9.5 x 6.7 x 1.3 inches", + "weight": "1 pound", + "pages": "395 " +}, +"250926998": { + "books_id": "250926998", + "title": "Kibbutz Makom : report from an Israeli kibbutz / by Amia Lieblich", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00GF0TVPO", + "publication": "London : Deutsch, Edition: 1st U. K. Edition", + "summary": "Kibbutz Makom : report from an Israeli kibbutz / by Amia Lieblich", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["307.7"], + "wording": ["Communities", + "Social sciences", + "Social sciences, sociology & anthropology", + "Specific kinds of communities"] + }, + "lcc": { + "code": "HX742.A3 L53" + }, + "subject": [["Kibbutzim", + "Case studies"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Sociology"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "5686"], + "source": "amazon.com books", + "workcode": "617468", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"250927058": { + "books_id": "250927058", + "title": "Memories of a Giant: Eulogies in Memory of Rabbi Dr. Joseph B. Soloveitchik (Rabbi Soloveitchik Library, vol. 1)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Michael Bierman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Michael Bierman", + "fl": "Michael Bierman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9657108500", + "isbn": { + "0": "9657108500", + "2": "9789657108505" + }, + "asin": "9657108500", + "ean": ["9657108500"], + "publication": "Urim Publications (2005), Edition: 1, 368 pages", + "date": "2005", + "summary": "Memories of a Giant: Eulogies in Memory of Rabbi Dr. Joseph B. Soloveitchik (Rabbi Soloveitchik Library, vol. 1) by Michael Bierman (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.832092"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Orthodox Judaism", + "Orthodox Judaism - biographical, historical and geographical", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S6144 M46" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "7621255", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "7 inches", + "dimensions": "9.5 x 7 x 1.25 inches", + "weight": "1.8 pounds", + "pages": "368 " +}, +"250927078": { + "books_id": "250927078", + "title": "The Battle for Jerusalem, June 5-7, 1967", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rabinovich, Abraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabinovich, Abraham", + "fl": "Abraham Rabinovich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602855", + "isbn": { + "0": "0827602855", + "2": "9780827602854" + }, + "asin": "0827602855", + "ean": ["0827602855"], + "publication": "Jewish Pubn Society (1991), Edition: Anniversary, 470 pages", + "date": "1991", + "summary": "The Battle for Jerusalem, June 5-7, 1967 by Abraham Rabinovich (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.046"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127.J4 R23" + }, + "subject": { + "0": ["Israel-Arab War, 1967", + "Jerusalem"], + "2": ["Jerusalem, Battle of, Jerusalem, 1967"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "759714", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "470 p.; 8 inches", + "height": "8 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8 x 5.75 x 1 inches", + "weight": "1.3 pounds", + "pages": "470 " +}, +"250927124": { + "books_id": "250927124", + "title": "Reb Yaakov: The Life and Times of Hagaon Rabbi Yaakov Kamenetsky (ArtScroll History)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosenblum, Yonason", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosenblum, Yonason", + "fl": "Yonason Rosenblum", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899064132", + "isbn": { + "0": "0899064132", + "2": "9780899064130" + }, + "asin": "0899064132", + "ean": ["0899064132"], + "publication": "Mesorah Publications Ltd. (1993), Edition: First Edition, 404 pages", + "date": "1993", + "summary": "Reb Yaakov: The Life and Times of Hagaon Rabbi Yaakov Kamenetsky (ArtScroll History) by Yonason Rosenblum (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.K2845 R67" + }, + "genre": ["Nonfiction", + "Anthropology", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "1046518", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "404 p.; 9 inches", + "height": "9 inches", + "thickness": "1.1 inches", + "length": "6.2 inches", + "dimensions": "9 x 6.2 x 1.1 inches", + "weight": "1.60055602212 pounds", + "pages": "404 " +}, +"250927200": { + "books_id": "250927200", + "title": "A TREASURY OF JEWISH HUMOUR, EDITED BY NATHAN AUSUBEL", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Ausubel, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ausubel, Nathan", + "fl": "Nathan Ausubel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J5WNJW", + "publication": "DOUBLEDAY & COMPANY (1951)", + "date": "1951", + "summary": "A TREASURY OF JEWISH HUMOUR, EDITED BY NATHAN AUSUBEL by Nathan Ausubel (1951)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.87"], + "wording": ["Collections of humor and satire", + "Collections of literary texts from more than two literatures", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.J5 T74" + }, + "subject": [["Jewish wit and humor"]], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "976935", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.9 pounds" +}, +"250927202": { + "books_id": "250927202", + "title": "The Modern Jewish Canon: A Journey Through Language and Culture", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wisse, Ruth R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wisse, Ruth R.", + "fl": "Ruth R. Wisse", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226903184", + "isbn": { + "0": "0226903184", + "2": "9780226903187" + }, + "asin": "0684830752", + "ean": ["0684830752"], + "publication": "Free Press (2000), Edition: First Edition, 416 pages", + "date": "2000", + "summary": "The Modern Jewish Canon: A Journey Through Language and Culture by Ruth R. Wisse (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["809.3"], + "wording": ["Fiction", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "PN842 .W57" + }, + "subject": { + "0": ["Canon (Literature)"], + "2": ["Jewish fiction", + "History and criticism"], + "4": ["Jews in literature"], + "6": ["Judaism and literature"], + "8": ["Literature, Modern", + "History and criticism"], + "9": ["Literature, Modern", + "Jewish authors", + "History and criticism"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Fiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["17160326", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "29484", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "416 p.; 9.54 inches", + "height": "9.54 inches", + "thickness": "1.18 inches", + "length": "6.58 inches", + "dimensions": "9.54 x 6.58 x 1.18 inches", + "weight": "0.00220462262 pounds", + "pages": "416 " +}, +"250927277": { + "books_id": "250927277", + "title": "Epistles of Maimonides: Crisis and Leadership", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Halkin, Dr. Abraham S.", + "primaryauthorrole": "Translator", + "authors": [{ + "lf": "Halkin, Dr. Abraham S.", + "fl": "Dr. Abraham S. Halkin", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827604300", + "isbn": { + "0": "0827604300", + "2": "9780827604308" + }, + "asin": "0827604300", + "ean": ["0827604300"], + "publication": "JEWISH PUBLICATON SOCIETY (2009), Edition: Reprint, 292 pages", + "date": "2009", + "summary": "Epistles of Maimonides: Crisis and Leadership by Dr. Abraham S. Halkin (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.172"], + "wording": ["Early Rabbinical", + "Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM545 .A2513" + }, + "subject": [["Consanguinity (Jewish law)", + "Early works to 1800"], + ["Gods in rabbinical literature"], + ["Idols and images", + "Biblical teaching"], + ["Islam", + "Controversial literature", + "Early works to 1800"], + ["Jews", + "Dietary laws", + "Early works to 1800"], + ["Jews", + "Persecutions", + "Yemen", + "Early works to 1800"], + ["Judaism", + "Apologetic works", + "Early works to 1800"], + ["Judaism", + "Doctrines"], + ["Judaism", + "Works to 1900"], + ["Judaism", + "works to 1900"], + ["Maimonides, Moses, 1135-1204", + "Correspondence"], + ["Martyrdom", + "Judaism", + "Early works to 1800"], + ["Resurrection (Jewish theology)", + "Early works to 1800"], + ["Shehitah", + "Early works to 1800"]], + "genre": ["Nonfiction", + "Business", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "20245", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1093376", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "292 p.; 8.31 inches", + "height": "8.31 inches", + "thickness": "0.88 inches", + "length": "5.53 inches", + "dimensions": "8.31 x 5.53 x 0.88 inches", + "weight": "0.83 pounds", + "pages": "292 " +}, +"250927293": { + "books_id": "250927293", + "title": "Torah Lights: Genesis Confronts Life, Love and Family", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Riskin, Shlomo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Riskin, Shlomo", + "fl": "Shlomo Riskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9657108632", + "isbn": { + "0": "9657108632", + "2": "9789657108635" + }, + "asin": "9657108632", + "ean": ["9657108632"], + "publication": "Urim Publications (2005), 309 pages", + "date": "2005", + "summary": "Torah Lights: Genesis Confronts Life, Love and Family by Shlomo Riskin (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.451"], + "wording": ["Judaism", + "Other religions", + "Passover Seder", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BS1225 .R57" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "4342814", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "309 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "7 inches", + "dimensions": "9.5 x 7 x 1 inches", + "weight": "1.65 pounds", + "pages": "309 " +}, +"250927323": { + "books_id": "250927323", + "title": "Exile and Restoration: A Study of Hebrew Thought of the Sixth Century B.C.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ackroyd, Peter R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ackroyd, Peter R.", + "fl": "Peter R. Ackroyd", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0664208436", + "isbn": { + "0": "0664208436", + "2": "9780664208431" + }, + "asin": "0664208436", + "ean": ["0664208436"], + "publication": "Westminster John Knox Pr (1968), Edition: Text is Free of Markings, 286 pages", + "date": "1968", + "summary": "Exile and Restoration: A Study of Hebrew Thought of the Sixth Century B.C. by Peter R. Ackroyd (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.95"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "History", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1197 .A25" + }, + "subject": [["Bible. O.T.", + "History of Biblical events"]], + "series": ["Old Testament Library"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "418486", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "286 p.", + "weight": "1.35 pounds", + "pages": "286 " +}, +"250927376": { + "books_id": "250927376", + "title": "Tevye's Daughters, collected stories of Sholom Aleichem", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Aleichem, Sholom", + "primaryauthorrole": "Author", + "secondaryauthor": "Shahn, Ben", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Aleichem, Sholom", + "fl": "Sholom Aleichem", + "role": "Author" + }, + { + "lf": "Shahn, Ben", + "fl": "Ben Shahn", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B004I8K1BI", + "publication": "crown (1949), Edition: 4th printing", + "date": "1949", + "summary": "Tevye's Daughters, collected stories of Sholom Aleichem by Sholom Aleichem (1949)", + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["yid"], + "ddc": { + "code": ["892.493"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.R113 T" + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "13971353", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "weight": "1.3 pounds" +}, +"250927378": { + "books_id": "250927378", + "title": "Professors on the Parashah: Studies on the Weekly Torah Reading", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moscovitz, Leib", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Moscovitz, Leib", + "fl": "Leib Moscovitz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9657108748", + "isbn": { + "0": "9657108748", + "2": "9789657108741" + }, + "asin": "9657108748", + "ean": ["9657108748"], + "publication": "Urim Publications (2005), 359 pages", + "date": "2005", + "summary": "Professors on the Parashah: Studies on the Weekly Torah Reading by Leib Moscovitz (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BS1225 .P76" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "106692", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "359 p.; 9.6 inches", + "height": "9.5999808 inches", + "thickness": "1.0999978 inches", + "length": "6.7999864 inches", + "dimensions": "9.5999808 x 6.7999864 x 1.0999978 inches", + "weight": "1.76810734124 pounds", + "pages": "359 " +}, +"250927421": { + "books_id": "250927421", + "title": "The Ladder of Jacob: Ancient Interpretations of the Biblical Story of Jacob and His Children", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kugel, James L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kugel, James L.", + "fl": "James L. Kugel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691121222", + "isbn": { + "0": "0691121222", + "2": "9780691121222" + }, + "asin": "0691121222", + "ean": ["0691121222"], + "publication": "Princeton University Press (2006), Edition: First Edition, 278 pages", + "date": "2006", + "summary": "The Ladder of Jacob: Ancient Interpretations of the Biblical Story of Jacob and His Children by James L. Kugel (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.11092"], + "wording": ["Genesis", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS580.J3 K84" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "941249", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "278 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.25 inches", + "weight": "1.2 pounds", + "pages": "278 " +}, +"250927474": { + "books_id": "250927474", + "title": "Hebrew Thought Compared with Greek", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Boman, Thorleif", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Boman, Thorleif", + "fl": "Thorleif Boman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393005348", + "isbn": { + "0": "0393005348", + "2": "9780393005349" + }, + "asin": "0393005348", + "ean": ["0393005348"], + "publication": "W. W. Norton & Company (1970), 226 pages", + "date": "1970", + "summary": "Hebrew Thought Compared with Greek by Thorleif Boman (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["180"], + "wording": ["Ancient, medieval & eastern philosophy", + "Ancient, medieval, eastern philosophy", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B156.B613" + }, + "subject": { + "0": ["Philosophy, Ancient"], + "2": ["Philosophy, Jewish"] + }, + "originaltitle": "Das hebra\u0308ische Denken im Vergleich mit dem Griechischen", + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "676273", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "226 p.; 7.8 inches", + "height": "7.8 inches", + "thickness": "0.6 inches", + "length": "5.1 inches", + "dimensions": "7.8 x 5.1 x 0.6 inches", + "weight": "0.55336027762 pounds", + "pages": "226 " +}, +"250927501": { + "books_id": "250927501", + "title": "The Twelve Prophets: Hebrew Text and English Translation (Soncino Books of the Bible)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dr. A. Ed. Cohen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dr. A. Ed. Cohen", + "fl": "Dr. A. Ed. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000EU6C6M", + "publication": "Soncino Press (1965), Edition: Fifth Impression", + "date": "1965", + "summary": "The Twelve Prophets: Hebrew Text and English Translation (Soncino Books of the Bible) by Dr. A. Ed. Cohen (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31103459", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.1 pounds" +}, +"250927538": { + "books_id": "250927538", + "title": "The Ancient Near East: An Anthology of Texts and Pictures", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pritchard, James B.", + "primaryauthorrole": "Editor", + "secondaryauthor": "Fleming, Daniel E.", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Pritchard, James B.", + "fl": "James B. Pritchard", + "role": "Editor" + }, + { + "lf": "Fleming, Daniel E.", + "fl": "Daniel E. Fleming", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780691147260", + "isbn": ["9780691147260", + "0691147264"], + "asin": "0691147264", + "ean": ["0691147264"], + "publication": "Princeton University Press (2010), Edition: 1, 656 pages", + "date": "2010", + "summary": "The Ancient Near East: An Anthology of Texts and Pictures by James B. Pritchard (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.93"], + "wording": ["Archaeology (Material remains)", + "Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1180 .P82" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "11679711", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "656 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.5 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.5 inches", + "weight": "2.12525620568 pounds", + "pages": "656 " +}, +"250927556": { + "books_id": "250927556", + "title": "Both Sides of the Hill: Britain and the Palestine War", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kimche, Jon", + "primaryauthorrole": "Author", + "secondaryauthor": "Kimche, David", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Kimche, Jon", + "fl": "Jon Kimche", + "role": "Author" + }, + { + "lf": "Kimche, David", + "fl": "David Kimche", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CKNCM", + "publication": "Secker & Warburg (1960), Edition: 1st, 287 pages", + "date": "1960", + "summary": "Both Sides of the Hill: Britain and the Palestine War by Jon Kimche (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.K5" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "1830146", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "287 p.", + "weight": "1 pound", + "pages": "287 " +}, +"250927622": { + "books_id": "250927622", + "title": "Dawn", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Frenaye, Frances", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }, + { + "lf": "Frenaye, Frances", + "fl": "Frances Frenaye", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0809037726", + "isbn": { + "0": "0809037726", + "2": "9780809037728" + }, + "asin": "0809037726", + "ean": ["0809037726"], + "publication": "Hill and Wang (2006), Edition: Translation, 81 pages", + "date": "2006", + "summary": "Dawn by Elie Wiesel (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["843.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 A913" + }, + "subject": [["Holocaust survivors", + "Fiction"], + ["Murder", + "Psychological aspects", + "Fiction"], + ["National liberation movements", + "Palestine", + "Fiction"], + ["Palestine", + "History", + "1929-1948", + "Fiction"]], + "series": ["The Night Trilogy"], + "originaltitle": "L'Aube", + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "4162347", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "81 p.; 8.2 inches", + "height": "8.1999836 inches", + "thickness": "0.3 inches", + "length": "5.5 inches", + "dimensions": "8.1999836 x 5.5 x 0.3 inches", + "weight": "0.21 pounds", + "pages": "81 " +}, +"250927653": { + "books_id": "250927653", + "title": "To Jerusalem and Back: A Personal Account", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bellow, Saul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bellow, Saul", + "fl": "Saul Bellow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780670717293", + "isbn": ["9780670717293", + "0670717290"], + "asin": "0670717290", + "ean": ["0670717290"], + "publication": "The Viking Press (1976), Edition: First Edition, 182 pages", + "date": "1976", + "summary": "To Jerusalem and Back: A Personal Account by Saul Bellow (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS107 .B37" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Arab-Israeli conflict", + "1973-1993"], + "3": ["Authors, American", + "20th century", + "Biography"], + "4": ["Authors, American", + "Biography"], + "5": ["Bellow, Saul", + "Travel", + "Israel"], + "6": ["Israel", + "Description and travel"], + "8": ["Jerusalem", + "Social life and customs"], + "9": ["Large Type Books"], + "10": ["Large type books"] + }, + "awards": ["New York Times bestseller", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Travel"], + "genre_id": ["20275895", + "1240", + "3578"], + "source": "amazon.com books", + "workcode": "29542", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "182 p.; 20 inches", + "height": "20 inches", + "thickness": "20 inches", + "length": "20 inches", + "dimensions": "20 x 20 x 20 inches", + "weight": "1 pound", + "pages": "182 " +}, +"250927659": { + "books_id": "250927659", + "title": "Isaac Bashevis Singer and the Eternal Past", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Buchen, Irving H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buchen, Irving H.", + "fl": "Irving H. Buchen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814700632", + "isbn": { + "0": "0814700632", + "2": "9780814700631" + }, + "asin": "0814700632", + "ean": ["0814700632"], + "publication": "New York University Press (1968), Edition: First Edition", + "date": "1968", + "summary": "Isaac Bashevis Singer and the Eternal Past by Irving H. Buchen (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5129.S49 Z6" + }, + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "2021636", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.85 pounds" +}, +"250927700": { + "books_id": "250927700", + "title": "I Followed my Heart to Jerusalem", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Roe, Yale", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roe, Yale", + "fl": "Yale Roe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1569802882", + "isbn": { + "0": "1569802882", + "2": "9781569802885" + }, + "asin": "1569802882", + "ean": ["1569802882"], + "publication": "Barricade Books (2005), 256 pages", + "date": "2005", + "summary": "I Followed my Heart to Jerusalem by Yale Roe (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "E184.R64" + }, + "genre": ["Nonfiction", + "Anthropology", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106657", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 9.26 inches", + "height": "9.26 inches", + "thickness": "1.22 inches", + "length": "6.24 inches", + "dimensions": "9.26 x 6.24 x 1.22 inches", + "weight": "1.45 pounds", + "pages": "256 " +}, +"250927736": { + "books_id": "250927736", + "title": "Biblical Archaeology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wright, G. Ernest", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wright, G. Ernest", + "fl": "G. Ernest Wright", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0715600265", + "isbn": { + "0": "0715600265", + "2": "9780715600269" + }, + "asin": "0715600265", + "ean": ["0715600265"], + "publication": "Gerald Duckworth & Co Ltd (1962), Edition: Second Edition, 289 pages", + "date": "1962", + "summary": "Biblical Archaeology by G. Ernest Wright (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.93"], + "wording": ["Archaeology (Material remains)", + "Geography, history, chronology, persons of Bible lands in Bible times", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS620.W7" + }, + "subject": [["Bible", + "Antiquities"]], + "originaltitle": "Biblical archaeology", + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "493875", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "289 p.", + "weight": "2.8 pounds", + "pages": "289 " +}, +"250927784": { + "books_id": "250927784", + "title": "THE BOOK OF OUR HERITAGE: 3 Volumes Set", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kitov, Eliyahu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kitov, Eliyahu", + "fl": "Eliyahu Kitov", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00PL0310A", + "publication": "A Publishers (1986), Edition: 1st Accumulated Ed.", + "date": "1986", + "summary": "THE BOOK OF OUR HERITAGE: 3 Volumes Set by Eliyahu Kitov (1986)", + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690 .K5313" + }, + "subject": [["Fasts and feasts", + "Judaism"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1611090", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "3.5 pounds" +}, +"250927836": { + "books_id": "250927836", + "title": "Storytelling in the Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Licht, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Licht, Jacob", + "fl": "Jacob Licht", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652235423", + "isbn": { + "0": "9652235423", + "2": "9789652235428" + }, + "asin": "9652235423", + "ean": ["9652235423"], + "publication": "The Hebrew University Magnes Press (1978), Edition: 2nd, 154 pages", + "date": "1978", + "summary": "Storytelling in the Bible by Jacob Licht (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1186.L52" + }, + "subject": [["Storytelling", + "Judaism"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "5986515", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "154 p.; 8.7 inches", + "height": "8.7 inches", + "thickness": "0.6 inches", + "length": "6.1 inches", + "dimensions": "8.7 x 6.1 x 0.6 inches", + "weight": "0.73634395508 pounds", + "pages": "154 " +}, +"250927897": { + "books_id": "250927897", + "title": "Human Rights in the Old Testament", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nahmani, H.S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nahmani, H.S.", + "fl": "H.S. Nahmani", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000BH3FAY", + "publication": "Joshua Chachik Publishing House (1964), Edition: First Edition", + "date": "1964", + "summary": "Human Rights in the Old Testament by H.S. Nahmani (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.8"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "Special Topics", + "The Bible"] + }, + "lcc": [], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "9713176", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250928034": { + "books_id": "250928034", + "title": "Beyond Patriarchy: Jewish Fathers and Families", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fuchs, Lawrence H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fuchs, Lawrence H.", + "fl": "Lawrence H. Fuchs", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874519411", + "isbn": { + "0": "0874519411", + "2": "9780874519419" + }, + "asin": "0874519411", + "ean": ["0874519411"], + "publication": "Brandeis University Press (2000), Edition: 1, 230 pages", + "date": "2000", + "summary": "Beyond Patriarchy: Jewish Fathers and Families by Lawrence H. Fuchs (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.85"], + "wording": ["Culture and institutions", + "Family", + "Marriage, partnerships, unions; family", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "BM627.F83" + }, + "genre": ["Nonfiction", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "7872136", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "230 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "1.10010668738 pounds", + "pages": "230 " +}, +"250928062": { + "books_id": "250928062", + "title": "American Rabbi: The Life and Thought of Jacob B. Agus", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Steven T.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Katz, Steven T.", + "fl": "Steven T. Katz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814746934", + "isbn": { + "0": "0814746934", + "2": "9780814746936" + }, + "asin": "0814746934", + "ean": ["0814746934"], + "publication": "NYU Press (1997), 256 pages", + "date": "1997", + "summary": "American Rabbi: The Life and Thought of Jacob B. Agus by Steven T. Katz (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.A53 A44" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "5234359", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "1.06042348022 pounds", + "pages": "256 " +}, +"250928111": { + "books_id": "250928111", + "title": "Elvis In Jerusalem: Die Moderne Israelische Gesellschaft", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "3886807665", + "isbn": { + "0": "3886807665", + "2": "9783886807666" + }, + "asin": "3886807665", + "ean": ["3886807665"], + "publication": "Siedler", + "summary": "Elvis In Jerusalem: Die Moderne Israelische Gesellschaft", + "language": ["German"], + "language_codeA": ["ger"], + "originallanguage": ["German"], + "originallanguage_codeA": ["ger"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149.I75 S4413" + }, + "subject": { + "0": ["Israel", + "Civilization"], + "2": ["National characteristics, Israeli"], + "4": ["Post-Zionism"], + "6": ["Zionism", + "Israel", + "History"], + "7": ["Zionism", + "Israel", + "History", + "20th century"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "708364", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.76720867176 pounds" +}, +"250928242": { + "books_id": "250928242", + "title": "Yiddishlands: A Memoir (Non-series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roskies, David G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roskies, David G.", + "fl": "David G. Roskies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814333974", + "isbn": { + "0": "0814333974", + "2": "9780814333976" + }, + "asin": "0814333974", + "ean": ["0814333974"], + "publication": "Wayne State University Press (2008), Edition: Har/Com, 240 pages", + "date": "2008", + "summary": "Yiddishlands: A Memoir (Non-series) by David G. Roskies (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["974.7"], + "wording": ["History & geography", + "History of North America", + "New York", + "Northeastern United States (New England and Middle Atlantic states)"] + }, + "lcc": { + "code": "F1054.M853 R678" + }, + "awards": ["Vine Awards for Canadian Jewish Literature"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Music"], + "genre_id": ["20275895", + "1240", + "1599", + "15028"], + "source": "amazon.com books", + "workcode": "8372551", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.4 inches", + "dimensions": "9.5 x 6.4 x 1 inches", + "weight": "1.29631810056 pounds", + "pages": "240 " +}, +"250928282": { + "books_id": "250928282", + "title": "Ben-Gurion: The Burning Ground, 1886-1948 (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Teveth, Shabtai", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Teveth, Shabtai", + "fl": "Shabtai Teveth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0395354099", + "isbn": { + "0": "0395354099", + "2": "9780395354094" + }, + "asin": "0395354099", + "ean": ["0395354099"], + "publication": "Houghton Mifflin School (1987), Edition: First Edition, 967 pages", + "date": "1987", + "summary": "Ben-Gurion: The Burning Ground, 1886-1948 (English and Hebrew Edition) by Shabtai Teveth (1987)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.B37 T475" + }, + "subject": { + "0": ["Ben-Gurion, David, 1886-1973"], + "1": ["Prime ministers", + "Israel", + "Biography"], + "3": ["Zionists", + "Palestine", + "Biography"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "927662", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "967 p.", + "height": "9.4 inches", + "thickness": "2.2 inches", + "length": "6.3 inches", + "dimensions": "9.4 x 6.3 x 2.2 inches", + "weight": "3.4 pounds", + "pages": "967 " +}, +"250928332": { + "books_id": "250928332", + "title": "Ben-Gurion: A Biography. The Centennial Edition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Michael Bar-Zohar - 1978", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Michael Bar-Zohar - 1978", + "fl": "Michael Bar-Zohar - 1978", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0915361604", + "isbn": { + "0": "0915361604", + "2": "9780915361601" + }, + "asin": "0915361604", + "ean": ["0915361604"], + "publication": "Modan Publishing House (1986), 342 pages", + "date": "1986", + "summary": "Ben-Gurion: A Biography. The Centennial Edition by Michael Bar-Zohar - 1978 (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.B37 B285513" + }, + "subject": { + "0": ["Ben-Gurion, David, 1886-1973"], + "1": ["Prime ministers", + "Israel", + "Biography"], + "3": ["Zionists", + "Palestine", + "Biography"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "927663", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "342 p.; 9.66 x 1.13 inches", + "height": "1.13 inches", + "thickness": "6.8 inches", + "length": "9.66 inches", + "dimensions": "1.13 x 9.66 x 6.8 inches", + "weight": "1.55 pounds", + "pages": "342 " +}, +"250928436": { + "books_id": "250928436", + "title": "New York Jew", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kazin, Alfred", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kazin, Alfred", + "fl": "Alfred Kazin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394495675", + "isbn": { + "0": "0394495675", + "2": "9780394495675" + }, + "asin": "0394495675", + "ean": ["0394495675"], + "publication": "Knopf (1978), Edition: First Edition, 307 pages", + "date": "1978", + "summary": "New York Jew by Alfred Kazin (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["810.9"], + "wording": ["American literature in English", + "American literature in English", + "History and criticism of American literature", + "Literature"] + }, + "lcc": { + "code": "PS29.K38 A36" + }, + "subject": { + "0": ["American literature", + "20th century", + "History and criticism", + "Theory, etc"], + "1": ["American literature", + "Theory, etc"], + "2": ["Critics", + "United States", + "Biography"], + "4": ["Kazin, Alfred, 1915-1998"], + "5": ["New York (N.Y.)", + "Intellectual life"] + }, + "awards": ["National Book Critics Circle Award", + "Notable Books List"], + "genre": ["Biography & Memoir", + "Literature Studies and Criticism"], + "genre_id": ["1240", + "53740"], + "source": "amazon.com books", + "workcode": "154065", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.", + "height": "9.3 inches", + "thickness": "1.3 inches", + "length": "6.1 inches", + "dimensions": "9.3 x 6.1 x 1.3 inches", + "weight": "1.45 pounds", + "pages": "307 " +}, +"250928504": { + "books_id": "250928504", + "title": "The Jewish Search for a Usable Past (The Helen and Martin Schwartz Lectures in Jewish Studies)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roskies, David G.", + "primaryauthorrole": "Author", + "secondaryauthor": "Roskies, David G.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Roskies, David G.", + "fl": "David G. Roskies", + "role": "Author" + }, + { + "lf": "Roskies, David G.", + "fl": "David G. Roskies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0253335051", + "isbn": { + "0": "0253335051", + "2": "9780253335050" + }, + "asin": "0253335051", + "ean": ["0253335051"], + "publication": "Indiana University Press (1999), Edition: First Edition, 232 pages", + "date": "1999", + "summary": "The Jewish Search for a Usable Past (The Helen and Martin Schwartz Lectures in Jewish Studies) by David G. Roskies (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112 .R755" + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "2826741", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "232 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "0.93 inches", + "length": "6.43 inches", + "dimensions": "9.5 x 6.43 x 0.93 inches", + "weight": "1.00089866948 pounds", + "pages": "232 " +}, +"250928522": { + "books_id": "250928522", + "title": "The Seventh Million: The Israelis and the Holocaust", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Segev, Tom", + "primaryauthorrole": "Author", + "secondaryauthor": "Watzman, Haim", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Segev, Tom", + "fl": "Tom Segev", + "role": "Author" + }, + { + "lf": "Watzman, Haim", + "fl": "Haim Watzman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805066608", + "isbn": { + "0": "0805066608", + "2": "9780805066609" + }, + "asin": "0805066608", + "ean": ["0805066608"], + "publication": "Picador (2000), Edition: First Edition, 608 pages", + "date": "2000", + "summary": "The Seventh Million: The Israelis and the Holocaust by Tom Segev (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .S44513" + }, + "subject": [["Holocaust survivors", + "Israel"], + ["Holocaust, Jewish (1939-1945)", + "Influence"], + ["Holocaust, Jewish (1939-1945)", + "Public opinion"], + ["Israel", + "Politics and government"], + ["Israel", + "politics and government"], + ["Jews", + "Israel", + "Attitudes"], + ["Public opinion", + "Israel"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "596621", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "608 p.; 9 inches", + "height": "9 inches", + "thickness": "1.3448792 inches", + "length": "5.999988 inches", + "dimensions": "9 x 5.999988 x 1.3448792 inches", + "weight": "1.79897205792 pounds", + "pages": "608 " +}, +"250928579": { + "books_id": "250928579", + "title": "A Bridge of Longing: The Lost Art of Yiddish Storytelling", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Roskies, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roskies, David", + "fl": "David Roskies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674081404", + "isbn": { + "0": "0674081404", + "2": "9780674081406" + }, + "asin": "0674081404", + "ean": ["0674081404"], + "publication": "Harvard University Press (1996), 432 pages", + "date": "1996", + "summary": "A Bridge of Longing: The Lost Art of Yiddish Storytelling by David Roskies (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.0933"], + "wording": ["-", + "1860-", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5124 .R67" + }, + "subject": [["Storytelling"], + ["Yiddish literature", + "History and criticism"]], + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "29125", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "432 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.08 inches", + "length": "6.13 inches", + "dimensions": "9.25 x 6.13 x 1.08 inches", + "weight": "1.21033781838 pounds", + "pages": "432 " +}, +"250928701": { + "books_id": "250928701", + "title": "Finding Our Fathers A Guidebook to Jewish Genealogy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rottenberg, Dan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rottenberg, Dan", + "fl": "Dan Rottenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0806311517", + "isbn": { + "0": "0806311517", + "2": "9780806311517" + }, + "asin": "0806311517", + "ean": ["0806311517"], + "publication": "Genealogical Publishing Company (1998), 423 pages", + "date": "1998", + "summary": "Finding Our Fathers A Guidebook to Jewish Genealogy by Dan Rottenberg (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["929.1"], + "wording": ["Biography & genealogy", + "Genealogies", + "Genealogy, names, insignia", + "History & geography"] + }, + "lcc": { + "code": "CS21.R58" + }, + "subject": [["Jews", + "Genealogy", + "Handbooks, Manuals, etc"], + ["Jews", + "Genealogy", + "Handbooks, manuals, etc"], + ["Jews", + "Handbooks, manuals, etc"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "196952", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "423 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.88 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.88 inches", + "weight": "1.10231131 pounds", + "pages": "423 " +}, +"250928719": { + "books_id": "250928719", + "title": "Masada: Herod's Fortress and the Zealot's Last Stand", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yadin, Yigael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yadin, Yigael", + "fl": "Yigael Yadin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394435427", + "isbn": { + "0": "0394435427", + "2": "9780394435428" + }, + "asin": "0394435427", + "ean": ["0394435427"], + "publication": "Random House (1966), Edition: 3rd Printing, 272 pages", + "date": "1966", + "summary": "Masada: Herod's Fortress and the Zealot's Last Stand by Yigael Yadin (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.031028"], + "wording": ["Geography & travel", + "Geography of and travel in ancient world", + "History & geography"] + }, + "lcc": { + "code": "DS110.M33 Y33" + }, + "subject": { + "0": ["Israel", + "Antiquities"], + "2": ["Masada Site (Israel)"], + "4": ["Masada Site (Israel)", + "Siege, 72-73"] + }, + "awards": ["Notable Books List"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944", + "3578"], + "source": "amazon.com books", + "workcode": "654605", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "272 p.", + "height": "10.1 inches", + "thickness": "1 inch", + "length": "7.4 inches", + "dimensions": "10.1 x 7.4 x 1 inches", + "weight": "1 pound", + "pages": "272 " +}, +"250928770": { + "books_id": "250928770", + "title": "Congregation: Contemporary Writers Read the Jewish Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosenberg, David", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Rosenberg, David", + "fl": "David Rosenberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0151463506", + "isbn": { + "0": "0151463506", + "2": "9780151463503" + }, + "asin": "0151463506", + "ean": ["0151463506"], + "publication": "Harcourt Brace Jovanovich (1987), Edition: First Edition, 526 pages", + "date": "1987", + "summary": "Congregation: Contemporary Writers Read the Jewish Bible by David Rosenberg (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1171 .C65" + }, + "subject": { + "0": ["Bible. O.T.", + "Criticism, interpretation, etc"], + "1": ["Jewish authors", + "United States", + "Biography"], + "3": ["Judaism and literature"], + "4": ["Judaism and literature", + "United States"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "517560", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "526 p.", + "height": "10 inches", + "thickness": "2 inches", + "length": "7 inches", + "dimensions": "10 x 7 x 2 inches", + "weight": "2.7888476143 pounds", + "pages": "526 " +}, +"250928786": { + "books_id": "250928786", + "title": "Ben-Gurion and the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Teveth, Shabtai", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Teveth, Shabtai", + "fl": "Shabtai Teveth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0151002371", + "isbn": { + "0": "0151002371", + "2": "9780151002375" + }, + "asin": "0151002371", + "ean": ["0151002371"], + "publication": "Harcourt (1996), Edition: First Edition, 310 pages", + "date": "1996", + "summary": "Ben-Gurion and the Holocaust by Shabtai Teveth (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS125.B37 T46" + }, + "subject": [["Holocaust, Jewish (1939-1945)"], + ["World War, 1939-1945", + "Rescue"], + ["Zionism", + "Palestine", + "History"]], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "249333", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "310 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.45064168396 pounds", + "pages": "310 " +}, +"250928832": { + "books_id": "250928832", + "title": "Zionism: The Sequel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Diament, Carol", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Diament, Carol", + "fl": "Carol Diament", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1889525065", + "isbn": { + "0": "1889525065", + "2": "9781889525068" + }, + "asin": "1889525065", + "ean": ["1889525065"], + "publication": "Haddasah Women's Zionist (1998), 477 pages", + "date": "1998", + "summary": "Zionism: The Sequel by Carol Diament (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54"], + "wording": ["Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS132 .Z56" + }, + "genre": ["Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "3162903", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250928843": { + "books_id": "250928843", + "title": "Testimony: Contmporary Writres Make the Holocaust Personal", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosenberg, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosenberg, David", + "fl": "David Rosenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812918177", + "isbn": { + "0": "0812918177", + "2": "9780812918175" + }, + "asin": "0812918177", + "ean": ["0812918177"], + "publication": "Crown (1989), Edition: First Edition, 511 pages", + "date": "1989", + "summary": "Testimony: Contmporary Writres Make the Holocaust Personal by David Rosenberg (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .T47" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)", + "Influence"], + "2": ["Jewish authors", + "United States", + "Biography"], + "4": ["Jews", + "United States", + "Intellectual life"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "1000124", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "511 p.", + "height": "9.2 inches", + "thickness": "2 inches", + "length": "6.4 inches", + "dimensions": "9.2 x 6.4 x 2 inches", + "weight": "1 pound", + "pages": "511 " +}, +"250928920": { + "books_id": "250928920", + "title": "Among Lions: The Battle for Jerusalem June 5-7, 1967", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moskin, J. Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Moskin, J. Robert", + "fl": "J. Robert Moskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0877953775", + "isbn": { + "0": "0877953775", + "2": "9780877953777" + }, + "asin": "0877953775", + "ean": ["0877953775"], + "publication": "Book Sales (1982), Edition: First Edition, 401 pages", + "date": "1982", + "summary": "Among Lions: The Battle for Jerusalem June 5-7, 1967 by J. Robert Moskin (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.046"], + "wording": ["1945-1980; 20th Century", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127.J4 M67" + }, + "subject": [["Israel-Arab War, 1967", + "Jerusalem"], + ["Jerusalem, Battle of, Jerusalem, 1967"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "1836570", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "401 p.", + "weight": "1.75 pounds", + "pages": "401 " +}, +"250928926": { + "books_id": "250928926", + "title": "Four Centuries of Jewish Women's Spirituality", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Umansky, Ellen", + "primaryauthorrole": "Editor", + "secondaryauthor": "Ashton, Dianne", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Umansky, Ellen", + "fl": "Ellen Umansky", + "role": "Editor" + }, + { + "lf": "Ashton, Dianne", + "fl": "Dianne Ashton", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0807036137", + "isbn": { + "0": "0807036137", + "2": "9780807036136" + }, + "asin": "0807036137", + "ean": ["0046442036139"], + "upc": ["046442036139"], + "publication": "Beacon Press (1992), Edition: First Edition, 368 pages", + "date": "1992", + "summary": "Four Centuries of Jewish Women's Spirituality by Ellen Umansky (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM43 .F68" + }, + "subject": { + "0": ["Jewish literature", + "Women authors"], + "2": ["Jewish meditations"], + "4": ["Jewish women", + "Biography"], + "6": ["Jewish women", + "Religious life"], + "8": ["Judaism"], + "10": ["judaism"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1240", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "703872", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 10 inches", + "height": "10 inches", + "thickness": "0.75 inches", + "length": "7 inches", + "dimensions": "10 x 7 x 0.75 inches", + "weight": "1.45064168396 pounds", + "pages": "368 " +}, +"250929097": { + "books_id": "250929097", + "title": "From Generation to Generation: How to Trace Your Jewish Genealogy and Family History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kurzweil, Arthur", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kurzweil, Arthur", + "fl": "Arthur Kurzweil", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1118104420", + "isbn": { + "0": "1118104420", + "2": "9781118104422" + }, + "asin": "1118104420", + "ean": ["1118104420"], + "publication": "Jossey-Bass (2004), Edition: 1, 320 pages", + "date": "2011", + "summary": "From Generation to Generation: How to Trace Your Jewish Genealogy and Family History by Arthur Kurzweil (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["929.1"], + "wording": ["Biography & genealogy", + "Genealogies", + "Genealogy, names, insignia", + "History & geography"] + }, + "lcc": { + "code": "CS21 .K87" + }, + "subject": { + "0": ["Jews", + "Genealogy"], + "2": ["Jews", + "Genealogy", + "Handbooks, Manuals, etc"], + "3": ["Jews", + "Genealogy", + "Handbooks, manuals, etc"], + "4": ["Jews", + "Handbooks, manuals, etc"], + "5": ["Kurzweil family"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "107212", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 9 inches", + "height": "8.999982 inches", + "thickness": "0.893699 inches", + "length": "5.999988 inches", + "dimensions": "8.999982 x 5.999988 x 0.893699 inches", + "weight": "1.2980156599774 pounds", + "pages": "320 " +}, +"250929114": { + "books_id": "250929114", + "title": "The Death of Death (Resurrection and Immortality in Jewish Thought)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gillman, Neil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gillman, Neil", + "fl": "Neil Gillman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580230814", + "isbn": { + "0": "1580230814", + "2": "9781580230810" + }, + "asin": "1580230814", + "ean": ["1580230814"], + "publication": "Jewish Lights (2000), Edition: 1st US - 1st Printing, 324 pages", + "date": "2000", + "summary": "The Death of Death (Resurrection and Immortality in Jewish Thought) by Neil Gillman (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.33"], + "wording": ["Eschatology", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM635 .G55" + }, + "subject": [["Death", + "History of doctrines"], + ["Death", + "Religious aspects", + "Judaism", + "History of doctrines"], + ["Future life", + "History of doctrines"], + ["Future life", + "Judaism", + "History of doctrines"], + ["Judaism", + "Doctrines"]], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "179233", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "324 p.; 9 inches", + "height": "9 inches", + "thickness": "0.68897637725 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.68897637725 inches", + "weight": "0.00220462262 pounds", + "pages": "324 " +}, +"250929402": { + "books_id": "250929402", + "title": "Israel at the Crossroads", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schweid, Eliezer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schweid, Eliezer", + "fl": "Eliezer Schweid", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0029ERNCS", + "publication": "Jewish Pubn Society (1973)", + "date": "1973", + "summary": "Israel at the Crossroads by Eliezer Schweid (1973)", + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM390.S3813" + }, + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "7872042", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250929427": { + "books_id": "250929427", + "title": "Bar-Kokhba: The Rediscovery of the Legendary Hero of the LAST Jewish Revolt Against Imperial Rome", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yadin, Yigael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yadin, Yigael", + "fl": "Yigael Yadin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0012GFVE6", + "publication": "Weidenfeld and Nicolson (1978), 271 pages", + "date": "1978", + "summary": "Bar-Kokhba: The Rediscovery of the Legendary Hero of the LAST Jewish Revolt Against Imperial Rome by Yigael Yadin (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.9" + }, + "subject": { + "0": ["Bar Kokhba, d. 135"], + "1": ["Jews", + "History"], + "2": ["Jews", + "History", + "Bar Kokhba Rebellion, 132-135"], + "3": ["Jews", + "history"], + "4": ["Masada Site (Israel)", + "Siege, 72-73"], + "6": ["Palestine", + "Antiquities"] + }, + "originaltitle": "Bar-Kokhba", + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "548178", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "271 p.; 9 x 1 inches", + "height": "1 inch", + "thickness": "8 inches", + "length": "9 inches", + "dimensions": "1 x 9 x 8 inches", + "weight": "1 pound", + "pages": "271 " +}, +"250929724": { + "books_id": "250929724", + "title": "Atlas of Modern Jewish History (Studies in Jewish History)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friesel, Evyatar", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friesel, Evyatar", + "fl": "Evyatar Friesel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195053931", + "isbn": { + "0": "0195053931", + "2": "9780195053937" + }, + "asin": "0195053931", + "ean": ["0195053931"], + "publication": "Oxford University Press (1990), Edition: Revised, 160 pages", + "date": "1990", + "summary": "Atlas of Modern Jewish History (Studies in Jewish History) by Evyatar Friesel (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["912.13058"], + "wording": ["Geography & travel", + "History & geography", + "Maps and plans of surface of earth and of extraterrestrial worlds", + "Maps of Areas, regions, places in general"] + }, + "lcc": { + "code": "G1030 .F6513" + }, + "genre": ["Nonfiction", + "History", + "Reference", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1599", + "4877", + "1944", + "3578"], + "source": "amazon.com books", + "workcode": "6516733", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "160 p.; 12 inches", + "height": "12 inches", + "thickness": "0.75 inches", + "length": "9.5 inches", + "dimensions": "12 x 9.5 x 0.75 inches", + "weight": "2.15 pounds", + "pages": "160 " +}, +"250930861": { + "books_id": "250930861", + "title": "O Jerusalem!", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Collins, Larry; Lapierre, Dominique", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Collins, Larry; Lapierre, Dominique", + "fl": "Larry; Lapierre Collins, Dominique", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0044YVOPS", + "publication": "Pocket Books (1973), Edition: Mass Market Paperback, 745 pages", + "date": "1973", + "summary": "O Jerusalem! by Larry; Lapierre Collins, Dominique (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.J4 C63" + }, + "subject": { + "0": ["Israel-Arab War, 1948-1949", + "Jerusalem"], + "2": ["Jerusalem", + "History", + "Siege, 1948"] + }, + "originaltitle": "\u00d4 J\u00e9rusalem!", + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "486408", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "745 p.", + "weight": "0.85 pounds", + "pages": "745 " +}, +"250931398": { + "books_id": "250931398", + "title": "The Greatest Jewish Stories Ever Told", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Patterson, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Patterson, David", + "fl": "David Patterson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824603990", + "isbn": { + "0": "0824603990", + "2": "9780824603991" + }, + "asin": "0824603990", + "ean": ["0824603990"], + "publication": "Jonathan David Pub (1997), 400 pages", + "date": "1997", + "summary": "The Greatest Jewish Stories Ever Told by David Patterson (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530 .P325" + }, + "genre": ["No Genre", + "Tween"], + "genre_id": ["10037570", + "1191"], + "source": "amazon.com books", + "workcode": "483509", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "400 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.5 inches", + "weight": "1.65 pounds", + "pages": "400 " +}, +"250931419": { + "books_id": "250931419", + "title": "Mila 18", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Uris, Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Uris, Leon", + "fl": "Leon Uris", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000K0H864", + "publication": "Bantam Books (1962), Edition: 5th ed", + "date": "1962", + "summary": "Mila 18 by Leon Uris (1962)", + "language": ["French"], + "language_codeA": ["fre"], + "originallanguage": ["English"], + "originallanguage_codeA": ["fre", + "eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3541.R46" + }, + "subject": [["Warsaw (Poland)", + "History", + "Warsaw Ghetto Uprising, 1943", + "Fiction"]], + "originaltitle": "Mila 18", + "awards": ["Commonwealth Club of California Book Awards", + "New York Times bestseller", + "Publishers Weekly Bestseller"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "42296", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.35 pounds" +}, +"250931505": { + "books_id": "250931505", + "title": "Karski: How One Man Tried to Stop the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wood, E. Thomas", + "primaryauthorrole": "Author", + "secondaryauthor": "Jankowski, Stanislaw M.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Wood, E. Thomas", + "fl": "E. Thomas Wood", + "role": "Author" + }, + { + "lf": "Jankowski, Stanislaw M.", + "fl": "Stanislaw M. Jankowski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0471145734", + "isbn": { + "0": "0471145734", + "2": "9780471145738" + }, + "asin": "0471145734", + "ean": ["0471145734"], + "publication": "Wiley (1996), 324 pages", + "date": "1996", + "summary": "Karski: How One Man Tried to Stop the Holocaust by E. Thomas Wood (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D802.P6 W65" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "240314", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "324 p.; 9.29 inches", + "height": "9.29132 inches", + "thickness": "0.89759663 inches", + "length": "6.436995 inches", + "dimensions": "9.29132 x 6.436995 x 0.89759663 inches", + "weight": "1.00089866948 pounds", + "pages": "324 " +}, +"250931555": { + "books_id": "250931555", + "title": "Hasidic Anthology: Tales and Teaching of the Hasidim", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Newman, Louis I.", + "primaryauthorrole": "Author", + "secondaryauthor": "Spitz, Samuel", + "secondaryauthorroles": "Collaborator", + "authors": [{ + "lf": "Newman, Louis I.", + "fl": "Louis I. Newman", + "role": "Author" + }, + { + "lf": "Spitz, Samuel", + "fl": "Samuel Spitz", + "role": "Collaborator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805200460", + "isbn": { + "0": "0805200460", + "2": "9780805200461" + }, + "asin": "0805200460", + "ean": ["0805200460"], + "publication": "Schocken Books Inc. (1963), 576 pages", + "date": "1963", + "summary": "Hasidic Anthology: Tales and Teaching of the Hasidim by Louis I. Newman (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.833082"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .N4" + }, + "subject": [["Hasidism"], + ["Homiletical illustrations"], + ["Jewish literature"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3152129", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "576 p.", + "weight": "1.2 pounds", + "pages": "576 " +}, +"250931609": { + "books_id": "250931609", + "title": "Rebirth; the Story of Eliezer Ben-Yehudah and the Modern Hebrew Language", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Omer, Dvorah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Omer, Dvorah", + "fl": "Dvorah Omer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000IOYVKS", + "publication": "THE JEWISH PUBLICATION SOCIETY (1972), Edition: First Edition, 199 pages", + "date": "1972", + "summary": "Rebirth; the Story of Eliezer Ben-Yehudah and the Modern Hebrew Language by Dvorah Omer (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.B35 O413" + }, + "subject": [["Ben-Avi, Ithamar, 1884-1943"], + ["Ben-Avi, Ithamar, 1884-1943", + "Juvenile literature"], + ["Ben-Yehuda, Eliezer, 1858-1922"], + ["Ben-Yehuda, Eliezer, 1858-1922", + "Juvenile literature"], + ["Israel", + "History"]], + "genre": ["No Genre", + "Tween"], + "genre_id": ["10037570", + "1191"], + "source": "amazon.com books", + "workcode": "3437373", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250931781": { + "books_id": "250931781", + "title": "Simbari", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Simbari, Nicola", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Simbari, Nicola", + "fl": "Nicola Simbari", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671220977", + "isbn": { + "0": "0671220977", + "2": "9780671220976" + }, + "asin": "0671220977", + "ean": ["0671220977"], + "publication": "Simon and Schuster (1975), 363 pages", + "date": "1975", + "summary": "Simbari by Nicola Simbari (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["759.5"], + "wording": ["Arts & recreation", + "History, geographic treatment, biography", + "Italy and region", + "Painting"] + }, + "lcc": { + "code": "ND623.S533 P73" + }, + "genre": ["Nonfiction", + "Art & Design"], + "genre_id": ["20275895", + "9985304"], + "source": "amazon.com books", + "workcode": "14832559", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "363 p.", + "weight": "1 pound", + "pages": "363 " +}, +"250931804": { + "books_id": "250931804", + "title": "Stuart Preston / Simbari Signed 1975 [Hardcover] Preston, Stuart", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Preston, Stuart", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Preston, Stuart", + "fl": "Stuart Preston", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B08RWJCYXR", + "publication": "Generic (1975)", + "date": "1975", + "summary": "Stuart Preston / Simbari Signed 1975 [Hardcover] Preston, Stuart by Stuart Preston (1975)", + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "3720874", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"250931810": { + "books_id": "250931810", + "title": "In the Beginning: A Novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Potok, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Potok, Chaim", + "fl": "Chaim Potok", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "044900113X", + "isbn": { + "0": "044900113X", + "2": "9780449001134" + }, + "asin": "044900113X", + "ean": ["044900113X"], + "publication": "Random House Publishing Group (1997), Edition: First Ballantine Books Trade Paperback Edition, 416 pages", + "date": "1997", + "summary": "In the Beginning: A Novel by Chaim Potok (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813"], + "wording": ["American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.P86 PS3566 .O69" + }, + "subject": { + "0": ["Fiction in English"], + "1": ["Jewish fiction"], + "3": ["Jewish men", + "Fiction"], + "5": ["Jews", + "New York", + "Fiction"], + "6": ["Jews", + "New York (State)", + "New York", + "Fiction"], + "7": ["New York (N.Y.)", + "Fiction"], + "9": ["Polish Americans", + "Fiction"] + }, + "awards": ["Grinzane Cavour Prize", + "New York Times bestseller"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "27054", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "416 p.; 8.19 inches", + "height": "8.1875 inches", + "thickness": "0.94 inches", + "length": "5.5 inches", + "dimensions": "8.1875 x 5.5 x 0.94 inches", + "weight": "0.81350574678 pounds", + "pages": "416 " +}, +"250931887": { + "books_id": "250931887", + "title": "Daily prayers for children", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Aronin, Ben", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Aronin, Ben", + "fl": "Ben Aronin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BOI7E", + "publication": "Citadel Press (1966), Edition: First Edition, 127 pages", + "date": "1966", + "summary": "Daily prayers for children by Ben Aronin (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["242.82"], + "wording": ["Children's Christian Prayer Books", + "Christian practice & observance", + "Devotional literature", + "Prayer books", + "Religion"] + }, + "lcc": { + "code": "BV265.A7" + }, + "subject": [["Children", + "Prayers and devotions"], + ["Devotional calendars"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3436851", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "127 p.", + "weight": "0.7 pounds", + "pages": "127 " +}, +"250931938": { + "books_id": "250931938", + "title": "Anthology of Holocaust Literature", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glatstein, Jacob", + "primaryauthorrole": "Editor", + "secondaryauthor": "Knox, Israel|Margoshes, Samuel|Mordecai Bernstein", + "secondaryauthorroles": "Editor|Editor|Editor", + "authors": [{ + "lf": "Glatstein, Jacob", + "fl": "Jacob Glatstein", + "role": "Editor" + }, + { + "lf": "Knox, Israel", + "fl": "Israel Knox", + "role": "Editor" + }, + { + "lf": "Margoshes, Samuel", + "fl": "Samuel Margoshes", + "role": "Editor" + }, + { + "lf": "Mordecai Bernstein", + "fl": "Mordecai Bernstein", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0689703430", + "isbn": { + "0": "0689703430", + "2": "9780689703430" + }, + "asin": "0689703430", + "ean": ["0689703430"], + "publication": "Atheneum (1973), 412 pages", + "date": "1973", + "summary": "Anthology of Holocaust Literature by Jacob Glatstein (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.531"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 G57" + }, + "subject": [["Holocaust, Jewish (1939-1945)"]], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "178987", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "412 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1 inches", + "weight": "1.543235834 pounds", + "pages": "412 " +}, +"250931944": { + "books_id": "250931944", + "title": "Jewish Magic and Superstition: A Study in Folk Religion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trachtenberg, Joshua", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Trachtenberg, Joshua", + "fl": "Joshua Trachtenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "161427407X", + "isbn": { + "0": "161427407X", + "2": "9781614274070" + }, + "asin": "161427407X", + "ean": ["161427407X"], + "publication": "Martino Fine Books (2013), 374 pages", + "date": "2013", + "summary": "Jewish Magic and Superstition: A Study in Folk Religion by Joshua Trachtenberg (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "GR98 .T7" + }, + "subject": { + "0": ["Jews", + "Folklore"], + "2": ["Magic, Jewish"], + "3": ["Superstition", + "Religious aspects", + "Judaism"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "10405", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "374 p.; 9 inches", + "height": "9 inches", + "thickness": "0.94 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.94 inches", + "weight": "1.21033781838 pounds", + "pages": "374 " +}, +"250932001": { + "books_id": "250932001", + "title": "My Grandfather's Blessings: Stories of Strength, Refuge, and Belonging", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Remen, Rachel Naomi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Remen, Rachel Naomi", + "fl": "Rachel Naomi Remen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1573228567", + "isbn": { + "0": "1573228567", + "2": "9781573228565" + }, + "asin": "1573228567", + "ean": ["8601200630992"], + "publication": "Riverhead Books (2001), Edition: First Edition, 400 pages", + "date": "2001", + "summary": "My Grandfather's Blessings: Stories of Strength, Refuge, and Belonging by Rachel Naomi Remen (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.72"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Prayer and Meditation", + "Religion"] + }, + "lcc": { + "code": "BM723 .R46" + }, + "subject": { + "0": ["Audiobooks"], + "1": ["Exempla, Jewish"], + "3": ["Jewish ethics"], + "5": ["Jewish way of life"], + "7": ["Remen, Rachel Naomi", + "Religion"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "42876", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "400 p.; 8.26 inches", + "height": "8.26 inches", + "thickness": "1 inch", + "length": "5.51 inches", + "dimensions": "8.26 x 5.51 x 1 inches", + "weight": "1.01192178258 pounds", + "pages": "400 " +}, +"250932036": { + "books_id": "250932036", + "title": "Young Moshe's Diary:", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Flinker, Moishe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Flinker, Moishe", + "fl": "Moishe Flinker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0030CKWPS", + "publication": "Yad Vashem (1971), Edition: 2nd prt.", + "date": "1971", + "summary": "Young Moshe's Diary: by Moishe Flinker (1971)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D811.F5453" + }, + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com books", + "workcode": "1740453", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.6 pounds" +}, +"250932153": { + "books_id": "250932153", + "title": "Rembrandt:, The Jews and the Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Landsberger, Franz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Landsberger, Franz", + "fl": "Franz Landsberger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000REN0SI", + "publication": "Jewish Publication Society (1961), Edition: 2nd, 190 pages", + "date": "1961", + "summary": "Rembrandt:, The Jews and the Bible by Franz Landsberger (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["759.9492"], + "wording": ["Arts & recreation", + "Europe", + "History, geographic treatment, biography", + "Netherlands", + "Other geographic areas", + "Other parts", + "Painting"] + }, + "lcc": { + "code": "ND653.R4 L27" + }, + "subject": { + "0": ["Bible", + "Illustrations"], + "1": ["Jews in art"], + "3": ["Rembrandt Harmenszoon van Rijn, 1606-1669"] + }, + "genre": ["Nonfiction", + "Art & Design", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "3242069", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "190 p.", + "weight": "2.45 pounds", + "pages": "190 " +}, +"250932817": { + "books_id": "250932817", + "title": "The Principles of Jewish Law (The Institute for Research in Jewish Law Publication , No 6)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Elon, Menachem", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Elon, Menachem", + "fl": "Menachem Elon", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0706514157", + "isbn": { + "0": "0706514157", + "2": "9780706514155" + }, + "asin": "0706514157", + "ean": ["0706514157"], + "publication": "Coronet Books Inc (1995)", + "date": "1995", + "summary": "The Principles of Jewish Law (The Institute for Research in Jewish Law Publication , No 6) by Menachem Elon (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "KBM524 .P75" + }, + "genre": ["Nonfiction", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "4753997", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "10.5 inches", + "height": "10.5 inches", + "thickness": "1.25 inches", + "length": "8.25 inches", + "dimensions": "10.5 x 8.25 x 1.25 inches", + "weight": "2.95 pounds" +}, +"250932917": { + "books_id": "250932917", + "title": "Accepting the Yoke of Heaven: Commentary on the Weekly Torah Portion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leibowitz, Yeshayahu", + "primaryauthorrole": "Author", + "secondaryauthor": "Himelstein, Shmuel", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Leibowitz, Yeshayahu", + "fl": "Yeshayahu Leibowitz", + "role": "Author" + }, + { + "lf": "Himelstein, Shmuel", + "fl": "Shmuel Himelstein", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9657108772", + "isbn": { + "0": "9657108772", + "2": "9789657108772" + }, + "asin": "9657108772", + "ean": ["9657108772"], + "publication": "Urim Publications (2023), Edition: Second edition, 203 pages", + "date": "2023", + "summary": "Accepting the Yoke of Heaven: Commentary on the Weekly Torah Portion by Yeshayahu Leibowitz (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BS1225.4 .L52413" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "5240293", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "203 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.7495716908 pounds", + "pages": "203 " +}, +"250932973": { + "books_id": "250932973", + "title": "The Tenacity of Unreasonable Beliefs: Fundamentalism and the Fear of Truth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schimmel, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schimmel, Solomon", + "fl": "Solomon Schimmel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0199964459", + "isbn": { + "0": "0199964459", + "2": "9780199964451" + }, + "asin": "0199964459", + "ean": ["0199964459"], + "publication": "Oxford University Press (2012), Edition: Reprint, 294 pages", + "date": "2012", + "summary": "The Tenacity of Unreasonable Beliefs: Fundamentalism and the Fear of Truth by Solomon Schimmel (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200.9"], + "wording": ["History, geographic treatment, biography", + "Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "BL238 .S32" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "6214071", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "294 p.; 9.2 x 6.1 inches", + "height": "6.1 inches", + "thickness": "0.7 inches", + "length": "9.2 inches", + "dimensions": "6.1 x 9.2 x 0.7 inches", + "weight": "0.9259415004 pounds", + "pages": "294 " +}, +"250933019": { + "books_id": "250933019", + "title": "Heritage and Hellenism (Volume 30)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gruen, Erich S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gruen, Erich S.", + "fl": "Erich S. Gruen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780520235069", + "isbn": ["9780520235069", + "0520235061"], + "asin": "0520235061", + "ean": ["0520235061"], + "publication": "University of California Press (2002), 362 pages", + "date": "2002", + "summary": "Heritage and Hellenism (Volume 30) by Erich S. Gruen (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM176 .G78" + }, + "subject": { + "0": ["Greek literature", + "History and criticism"], + "1": ["Greek literature", + "Jewish authors", + "History and criticism"], + "2": ["Hellenism"], + "4": ["Jews", + "Greece", + "Intellectual life"], + "6": ["Judaism", + "Apologetic works", + "History and criticism"], + "7": ["Judaism", + "History"], + "8": ["Judaism", + "History", + "Post-exilic period, 586 B.C.-210 A.D"], + "9": ["Judaism", + "History and criticism"], + "10": ["Judaism and literature", + "Greece"], + "12": ["hellenism"] + }, + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "377561", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "362 p.; 8.98 inches", + "height": "8.98 inches", + "thickness": "0.91 inches", + "length": "5.75 inches", + "dimensions": "8.98 x 5.75 x 0.91 inches", + "weight": "1.10010668738 pounds", + "pages": "362 " +}, +"250933091": { + "books_id": "250933091", + "title": "The Pity of It All: A Portrait of the German-Jewish Epoch, 1743-1933", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Elon, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elon, Amos", + "fl": "Amos Elon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0312422814", + "isbn": { + "0": "0312422814", + "2": "9780312422813" + }, + "asin": "0312422814", + "ean": ["0312422814"], + "publication": "Picador (2003), Edition: First Edition, 464 pages", + "date": "2003", + "summary": "The Pity of It All: A Portrait of the German-Jewish Epoch, 1743-1933 by Amos Elon (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.004924"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Jews", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS135.G33 E57" + }, + "subject": { + "0": ["Germany", + "Civilization", + "Jewish influences"], + "1": ["Germany", + "Ethnic relations"], + "3": ["Germany", + "Jewish influences"], + "4": ["Jews", + "Cultural assimilation", + "Germany"], + "5": ["Jews", + "Germany", + "History"], + "6": ["Jews", + "Germany", + "History", + "1800-1933"], + "7": ["Jews", + "Germany", + "History", + "18th century"], + "8": ["Jews", + "Germany", + "Intellectual life"], + "10": ["Jews", + "Germany.", + "Cultural assimilation"] + }, + "awards": ["National Jewish Book Award", + "Wingate Literary Prize"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "37966", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.8499983 inches", + "length": "5.6 inches", + "dimensions": "8.25 x 5.6 x 0.8499983 inches", + "weight": "0.81 pounds", + "pages": "464 " +}, +"250933152": { + "books_id": "250933152", + "title": "The Seven Deadly Sins: Jewish, Christian, and Classical Reflections on Human Psychology", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schimmel, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schimmel, Solomon", + "fl": "Solomon Schimmel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195119452", + "isbn": { + "0": "0195119452", + "2": "9780195119459" + }, + "asin": "0195119452", + "ean": ["8601422681215"], + "publication": "Oxford University Press (1997), 320 pages", + "date": "1997", + "summary": "The Seven Deadly Sins: Jewish, Christian, and Classical Reflections on Human Psychology by Solomon Schimmel (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM630 .S35" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "11270847", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 8.5 x 1 inches", + "height": "1 inch", + "thickness": "5.5 inches", + "length": "8.5 inches", + "dimensions": "1 x 8.5 x 5.5 inches", + "weight": "0.61508971098 pounds", + "pages": "320 " +}, +"250933214": { + "books_id": "250933214", + "title": "Jonah (The Anchor Yale Bible Commentaries)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sasson, Jack M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sasson, Jack M.", + "fl": "Jack M. Sasson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300139705", + "isbn": { + "0": "0300139705", + "2": "9780300139709" + }, + "asin": "0300139705", + "ean": ["0300139705"], + "publication": "Yale University Press (1995), 384 pages", + "date": "1995", + "summary": "Jonah (The Anchor Yale Bible Commentaries) by Jack M. Sasson (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["224.92077"], + "wording": ["Jonah", + "Other minor prophets", + "Prophetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS192.A1 .G3" + }, + "subject": [["Bible. O.T. Jonah", + "Commentaries"]], + "series": ["Anchor Yale Bible Commentaries", + "Anchor Bible", + "The Anchor Yale Bible Commentaries"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "468424", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "1.00089866948 pounds", + "pages": "384 " +}, +"250933252": { + "books_id": "250933252", + "title": "Somber Lust: The Art of Amos Oz (Suny Series in Modern Jewish Literature and Culture) (Suny Modern Jewish Literature and Culture)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mazor, Yair", + "primaryauthorrole": "Author", + "secondaryauthor": "Weinberger-Rotman, Marganit", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Mazor, Yair", + "fl": "Yair Mazor", + "role": "Author" + }, + { + "lf": "Weinberger-Rotman, Marganit", + "fl": "Marganit Weinberger-Rotman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791453081", + "isbn": { + "0": "0791453081", + "2": "9780791453087" + }, + "asin": "0791453081", + "ean": ["0791453081"], + "publication": "State University of New York Press (2002), 218 pages", + "date": "2002", + "summary": "Somber Lust: The Art of Amos Oz (Suny Series in Modern Jewish Literature and Culture) (Suny Modern Jewish Literature and Culture) by Yair Mazor (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.O9 Z7813" + }, + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "8789313", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "218 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.65918216338 pounds", + "pages": "218 " +}, +"250933285": { + "books_id": "250933285", + "title": "Herzl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Elon, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elon, Amos", + "fl": "Amos Elon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "003013126X", + "isbn": { + "0": "003013126X", + "2": "9780030131264" + }, + "asin": "003013126X", + "ean": ["003013126X"], + "publication": "Holt, Rinehart and Winston (1975), Edition: First Edition, 448 pages", + "date": "1975", + "summary": "Herzl by Amos Elon (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.H4 E57" + }, + "subject": [["Herzl, Theodor, 1860-1904"], + ["Zionists", + "Austria", + "Biography"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "1511821", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "448 p.", + "weight": "2.1 pounds", + "pages": "448 " +}, +"250933318": { + "books_id": "250933318", + "title": "Abraham Geiger and the Jewish Jesus (Chicago Studies in the History of Judaism)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heschel, Susannah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Heschel, Susannah", + "fl": "Susannah Heschel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226329593", + "isbn": { + "0": "0226329593", + "2": "9780226329598" + }, + "asin": "0226329593", + "ean": ["0226329593"], + "publication": "University of Chicago Press (1998), Edition: 1, 332 pages", + "date": "1998", + "summary": "Abraham Geiger and the Jewish Jesus (Chicago Studies in the History of Judaism) by Susannah Heschel (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.G4 H47" + }, + "subject": { + "0": ["Geiger, Abraham, 1810-1874"], + "1": ["Jesus Christ", + "Jewish interpretations"], + "2": ["Jewish scholars", + "Germany", + "Biography"], + "4": ["Rabbis", + "Germany", + "Biography"] + }, + "series": ["Chicago Studies in the History of Judaism"], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1512292", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "332 p.; 9.17 x 0.82 inches", + "height": "0.82 inches", + "thickness": "6.09 inches", + "length": "9.17 inches", + "dimensions": "0.82 x 9.17 x 6.09 inches", + "weight": "1.1243575362 pounds", + "pages": "332 " +}, +"250933393": { + "books_id": "250933393", + "title": "The Children of Noah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Patai, Raphael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Patai, Raphael", + "fl": "Raphael Patai", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691015805", + "isbn": { + "0": "0691015805", + "2": "9780691015804" + }, + "asin": "0691015805", + "ean": ["0691015805"], + "publication": "Princeton University Press (1998), 224 pages", + "date": "1998", + "summary": "The Children of Noah by Raphael Patai (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["387.5"], + "wording": ["Commerce, communications & transportation", + "Maritime History", + "Social sciences", + "Water, air, space transportation"] + }, + "lcc": { + "code": "VK113.P3 P32" + }, + "subject": [["Navigation", + "Palestine", + "History"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "378375", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 10 inches", + "height": "10 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "10 x 6.5 x 1 inches", + "weight": "1.15 pounds", + "pages": "224 " +}, +"250933434": { + "books_id": "250933434", + "title": "Messianism, Zionism, and Jewish Religious Radicalism (Chicago Studies in the History of Judaism)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ravitzky, Aviezer", + "primaryauthorrole": "Author", + "secondaryauthor": "Chipman, Jonathan|Swirsky, Michael", + "secondaryauthorroles": "Translator|Translator", + "authors": [{ + "lf": "Ravitzky, Aviezer", + "fl": "Aviezer Ravitzky", + "role": "Author" + }, + { + "lf": "Chipman, Jonathan", + "fl": "Jonathan Chipman", + "role": "Translator" + }, + { + "lf": "Swirsky, Michael", + "fl": "Michael Swirsky", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226705781", + "isbn": { + "0": "0226705781", + "2": "9780226705781" + }, + "asin": "0226705781", + "ean": ["0226705781"], + "publication": "University of Chicago Press (1996), Edition: 1, 304 pages", + "date": "1996", + "summary": "Messianism, Zionism, and Jewish Religious Radicalism (Chicago Studies in the History of Judaism) by Aviezer Ravitzky (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS149 .R32313" + }, + "series": ["Chicago Studies in the History of Judaism"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "540021", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9 inches", + "height": "9 inches", + "thickness": "1.2 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.2 inches", + "weight": "1.06262810284 pounds", + "pages": "304 " +}, +"250933485": { + "books_id": "250933485", + "title": "The Lost Princess: And Other Kabbalistic Tales of Rebbe Nachman of Breslov", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Nahman of Breslov", + "primaryauthorrole": "Author", + "secondaryauthor": "Kaplan, Aryeh|Kramer, Chaim", + "secondaryauthorroles": "Translator|Editor", + "authors": [{ + "lf": "Nahman of Breslov", + "fl": "Nahman of Breslov", + "role": "Author" + }, + { + "lf": "Kaplan, Aryeh", + "fl": "Aryeh Kaplan", + "role": "Translator" + }, + { + "lf": "Kramer, Chaim", + "fl": "Chaim Kramer", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580232175", + "isbn": { + "0": "1580232175", + "2": "9781580232173" + }, + "asin": "1580232175", + "ean": ["1580232175"], + "publication": "Jewish Lights (2004), Edition: 1, 388 pages", + "date": "2004", + "summary": "The Lost Princess: And Other Kabbalistic Tales of Rebbe Nachman of Breslov by Nahman of Breslov (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532 .N4213" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1738955", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "388 p.; 9 inches", + "height": "9 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.25 inches", + "weight": "0.00220462262 pounds", + "pages": "388 " +}, +"250933572": { + "books_id": "250933572", + "title": "The Jewish World: 365 Days", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "The Israel Museum Jerusalem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "The Israel Museum Jerusalem", + "fl": "The Israel Museum Jerusalem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0810955792", + "isbn": { + "0": "0810955792", + "2": "9780810955790" + }, + "asin": "0810955792", + "ean": ["0810955792"], + "publication": "Harry N. Abrams (2004), Edition: First Edition, 744 pages", + "date": "2004", + "summary": "The Jewish World: 365 Days by The Israel Museum Jerusalem (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["704.9"], + "wording": ["Arts", + "Arts & recreation", + "Iconography", + "Special topics in fine and decorative arts"] + }, + "lcc": { + "code": "N7414.I75 J475" + }, + "genre": ["Nonfiction", + "Anthropology", + "Art & Design", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "9985304", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "768422", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "744 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2.25 inches", + "length": "6.5 inches", + "dimensions": "9.25 x 6.5 x 2.25 inches", + "weight": "4.45 pounds", + "pages": "744 " +}, +"250933605": { + "books_id": "250933605", + "title": "Opportunities that Pass: An Historical Miscellany", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "secondaryauthor": "Roth, Joseph|Finestein, Israel", + "secondaryauthorroles": "Editor|Editor", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }, + { + "lf": "Roth, Joseph", + "fl": "Joseph Roth", + "role": "Editor" + }, + { + "lf": "Finestein, Israel", + "fl": "Israel Finestein", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "085303575X", + "isbn": { + "0": "085303575X", + "2": "9780853035756" + }, + "asin": "085303575X", + "ean": ["085303575X"], + "publication": "Vallentine Mitchell (2005), 232 pages", + "date": "2005", + "summary": "Opportunities that Pass: An Historical Miscellany by Cecil Roth (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.049240072"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS118" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "5619780", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "232 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.25002102554 pounds", + "pages": "232 " +}, +"250933743": { + "books_id": "250933743", + "title": "The Language of Truth: The Torah Commentary of the Sefat Emet", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Alter, Judah A.", + "primaryauthorrole": "Author", + "secondaryauthor": "Green, Rabbi Arthur", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Alter, Judah A.", + "fl": "Judah A. Alter", + "role": "Author" + }, + { + "lf": "Green, Rabbi Arthur", + "fl": "Rabbi Arthur Green", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827609469", + "isbn": { + "0": "0827609469", + "2": "9780827609464" + }, + "asin": "0827609469", + "ean": ["0827609469"], + "publication": "JEWISH PUBLICATON SOCIETY (2012), Edition: Bilingual, 428 pages", + "date": "2012", + "summary": "The Language of Truth: The Torah Commentary of the Sefat Emet by Judah A. Alter (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.107"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225 .A46" + }, + "subject": [["Bible O.T. Pentateuch", + "Commentaries"], + ["Bible. O.T. Pentateuch", + "Commentaries"], + ["Fasts and feasts", + "Judaism", + "Meditations"], + ["Fasts and feasts", + "Meditations"], + ["Hasidism"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1200978", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "428 p.; 9 inches", + "height": "9 inches", + "thickness": "1.35 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.35 inches", + "weight": "1.94 pounds", + "pages": "428 " +}, +"250933816": { + "books_id": "250933816", + "title": "The Samson Option: Israel's Nuclear Arsenal and American Foreign Policy", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hersh, Seymour M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hersh, Seymour M.", + "fl": "Seymour M. Hersh", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394570065", + "isbn": { + "0": "0394570065", + "2": "9780394570068" + }, + "asin": "0394570065", + "ean": ["0394570065"], + "publication": "Random House (1991), Edition: First Edition, 354 pages", + "date": "1991", + "summary": "The Samson Option: Israel's Nuclear Arsenal and American Foreign Policy by Seymour M. Hersh (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["355.8"], + "wording": ["Military equipment and supplies", + "Military science", + "Public administration & military science", + "Social sciences"] + }, + "lcc": { + "code": "UA853.I8 H47" + }, + "subject": { + "0": ["Israel", + "Foreign relations"], + "1": ["Israel", + "Foreign relations", + "United States"], + "2": ["Israel", + "Military policy"], + "4": ["Nuclear weapons", + "Israel"], + "6": ["United States", + "Foreign Relations"], + "7": ["United States", + "Foreign relations"], + "8": ["United States", + "Foreign relations", + "Israel"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "70623", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "354 p.", + "height": "9.3 inches", + "thickness": "1.3 inches", + "length": "6.3 inches", + "dimensions": "9.3 x 6.3 x 1.3 inches", + "weight": "1.45 pounds", + "pages": "354 " +}, +"250933893": { + "books_id": "250933893", + "title": "Despite All Odds: The Story of Lubavitch", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hoffman, Edward", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hoffman, Edward", + "fl": "Edward Hoffman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671677039", + "isbn": { + "0": "0671677039", + "2": "9780671677039" + }, + "asin": "0671677039", + "ean": ["0671677039"], + "publication": "Simon & Schuster (1991), Edition: First Edition, 224 pages", + "date": "1991", + "summary": "Despite All Odds: The Story of Lubavitch by Edward Hoffman (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .H57" + }, + "subject": [["Habad", + "United States"], + ["Hasidim", + "United States"], + ["Schneersohn, Menahem Mendel, 1902-"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1596505", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6.5 inches", + "dimensions": "9 x 6.5 x 0.75 inches", + "weight": "1.2 pounds", + "pages": "224 " +}, +"250933934": { + "books_id": "250933934", + "title": "Habad: The Hasidism of R. Shneur Zalman of Lyady", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Foxbrunner, Roman A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Foxbrunner, Roman A.", + "fl": "Roman A. Foxbrunner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685262", + "isbn": { + "0": "0876685262", + "2": "9780876685266" + }, + "asin": "0876685262", + "ean": ["0876685262"], + "publication": "Jason Aronson, Inc. (1993), Edition: reprint, 307 pages", + "date": "1993", + "summary": "Habad: The Hasidism of R. Shneur Zalman of Lyady by Roman A. Foxbrunner (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S525 F69" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "377521", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.; 9.28 inches", + "height": "9.28 inches", + "thickness": "1.12 inches", + "length": "6.4 inches", + "dimensions": "9.28 x 6.4 x 1.12 inches", + "weight": "1.39111687322 pounds", + "pages": "307 " +}, +"250934008": { + "books_id": "250934008", + "title": "Reverence, Righteousness, and Rahamanut: Essays in Memory of Rabbi Dr. Leo Jung", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schacter, Jacob J.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Schacter, Jacob J.", + "fl": "Jacob J. Schacter", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685912", + "isbn": { + "0": "0876685912", + "2": "9780876685914" + }, + "asin": "0876685912", + "ean": ["0876685912"], + "publication": "Jason Aronson, Inc. (1992), 368 pages", + "date": "1992", + "summary": "Reverence, Righteousness, and Rahamanut: Essays in Memory of Rabbi Dr. Leo Jung by Jacob J. Schacter (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM205 .R54" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "amazon.com books", + "workcode": "3294838", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.; 9.4 inches", + "height": "9.4 inches", + "thickness": "1.23 inches", + "length": "6.44 inches", + "dimensions": "9.4 x 6.44 x 1.23 inches", + "weight": "1.54984970186 pounds", + "pages": "368 " +}, +"250934047": { + "books_id": "250934047", + "title": "Studies in Jewish Dream Interpretation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harris, Monford", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Harris, Monford", + "fl": "Monford Harris", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568211260", + "isbn": { + "0": "1568211260", + "2": "9781568211268" + }, + "asin": "1568211260", + "ean": ["1568211260"], + "publication": "Jason Aronson, Inc. (1993), Edition: 1, 176 pages", + "date": "1993", + "summary": "Studies in Jewish Dream Interpretation by Monford Harris (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["154.6"], + "wording": ["In Sleep", + "Philosophy & psychology", + "Psychology", + "Subconscious and altered states and processes"] + }, + "lcc": { + "code": "BF1078 .H295" + }, + "genre": ["Nonfiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "3546009", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "176 p.; 9.42 inches", + "height": "9.42 inches", + "thickness": "0.73 inches", + "length": "6.38 inches", + "dimensions": "9.42 x 6.38 x 0.73 inches", + "weight": "0.93035074564 pounds", + "pages": "176 " +}, +"250934088": { + "books_id": "250934088", + "title": "Jewish Life in Renaissance Italy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonfil, Robert", + "primaryauthorrole": "Author", + "secondaryauthor": "Oldcorn, Anthony", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Bonfil, Robert", + "fl": "Robert Bonfil", + "role": "Author" + }, + { + "lf": "Oldcorn, Anthony", + "fl": "Anthony Oldcorn", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520073509", + "isbn": { + "0": "0520073509", + "2": "9780520073500" + }, + "asin": "0520073509", + "ean": ["0520073509"], + "publication": "University of California Press (1994), Edition: First Edition, 336 pages", + "date": "1994", + "summary": "Jewish Life in Renaissance Italy by Robert Bonfil (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["945.004924"], + "wording": ["History & geography", + "History of Europe", + "Italy", + "Italy, San Marino, Vatican City, Malta"] + }, + "lcc": { + "code": "DS135.I8 B6613" + }, + "subject": [["Italy", + "Ethnic relations"], + ["Jews", + "Italy", + "History"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106666", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "336 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.08 inches", + "length": "6.3 inches", + "dimensions": "9.25 x 6.3 x 1.08 inches", + "weight": "1.60055602212 pounds", + "pages": "336 " +}, +"250934320": { + "books_id": "250934320", + "title": "Preliminaries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yizhar, S", + "primaryauthorrole": "Author", + "secondaryauthor": "Miron, Dan|de Lange, Lecturer in Rabbinics Nicholas", + "secondaryauthorroles": "Introduction|Translator", + "authors": [{ + "lf": "Yizhar, S", + "fl": "S Yizhar", + "role": "Author" + }, + { + "lf": "Miron, Dan", + "fl": "Dan Miron", + "role": "Introduction" + }, + { + "lf": "de Lange, Lecturer in Rabbinics Nicholas", + "fl": "Lecturer in Rabbinics Nicholas de Lange", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592641903", + "isbn": { + "0": "1592641903", + "2": "9781592641901" + }, + "asin": "1592641903", + "ean": ["1592641903"], + "publication": "Toby Press (2007), Edition: Advanced Reader's Co, 305 pages", + "date": "2007", + "summary": "Preliminaries by S Yizhar (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.Y55 M5313" + }, + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "2990488", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "305 p.; 8.76 inches", + "height": "8.76 inches", + "thickness": "1.1 inches", + "length": "5.84 inches", + "dimensions": "8.76 x 5.84 x 1.1 inches", + "weight": "1.16 pounds", + "pages": "305 " +}, +"250934373": { + "books_id": "250934373", + "title": "The Chambers of the Palace: Teachings of Rabbi Nachman of Bratslav", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shulman, David Y.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shulman, David Y.", + "fl": "David Y. Shulman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876681801", + "isbn": { + "0": "0876681801", + "2": "9780876681800" + }, + "asin": "0876681801", + "ean": ["0876681801"], + "publication": "Jason Aronson, Inc. (1993), Edition: First Edition, 275 pages", + "date": "1993", + "summary": "The Chambers of the Palace: Teachings of Rabbi Nachman of Bratslav by David Y. Shulman (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .N25" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3171982", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "275 p.; 9.26 inches", + "height": "9.26 inches", + "thickness": "1.13 inches", + "length": "6.4 inches", + "dimensions": "9.26 x 6.4 x 1.13 inches", + "weight": "1.34041055296 pounds", + "pages": "275 " +}, +"250934419": { + "books_id": "250934419", + "title": "Opening the Tanya: Discovering the Moral and Mystical Teachings of a Classic Work of Kabbalah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinsaltz, Rabbi Adin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinsaltz, Rabbi Adin", + "fl": "Rabbi Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "078796798X", + "isbn": { + "0": "078796798X", + "2": "9780787967987" + }, + "asin": "078796798X", + "ean": ["078796798X"], + "upc": ["723812498314"], + "publication": "Jossey-Bass (2003), Edition: 1, 384 pages", + "date": "2003", + "summary": "Opening the Tanya: Discovering the Moral and Mystical Teachings of a Classic Work of Kabbalah by Rabbi Adin Steinsaltz (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.S563 S7413" + }, + "originaltitle": "Be'ur Tanya", + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1880824", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "384 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1.25 inches", + "weight": "1.35 pounds", + "pages": "384 " +}, +"250934468": { + "books_id": "250934468", + "title": "Lithuanian Jewish Communities", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schoenburg, Nancy", + "primaryauthorrole": "Author", + "secondaryauthor": "Schoenburg, Stuart", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Schoenburg, Nancy", + "fl": "Nancy Schoenburg", + "role": "Author" + }, + { + "lf": "Schoenburg, Stuart", + "fl": "Stuart Schoenburg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568219938", + "isbn": { + "0": "1568219938", + "2": "9781568219936" + }, + "asin": "1568219938", + "ean": ["1568219938"], + "publication": "Jason Aronson, Inc. (1996), Edition: First Edition, 512 pages", + "date": "1996", + "summary": "Lithuanian Jewish Communities by Nancy Schoenburg (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.5004924"], + "wording": ["Caucasus region [Lithuania now 947.93]", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries", + "[Mostly more Lithuania]"] + }, + "lcc": { + "code": "DS135.L5 S38" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Lithuania"], + ["Jews", + "Lithuania", + "History"], + ["Lithuania", + "Ethnic relations"], + ["Lithuania", + "History, Local"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "5214126", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "512 p.; 8.63 inches", + "height": "8.63 inches", + "thickness": "1.19 inches", + "length": "5.62 inches", + "dimensions": "8.63 x 5.62 x 1.19 inches", + "weight": "1.47930177802 pounds", + "pages": "512 " +}, +"250934490": { + "books_id": "250934490", + "title": "A Reporter's Life", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Cronkite, Walter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cronkite, Walter", + "fl": "Walter Cronkite", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00XXBBYD0", + "publication": "Alfred A. Knopf (2006), Edition: Later Printing", + "date": "2006", + "summary": "A Reporter's Life by Walter Cronkite (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["070.92"], + "wording": ["Biographies", + "Biography And History", + "Computer science, information & general works", + "Documentary media, educational media, news media; journalism; publishing", + "News media, journalism & publishing"] + }, + "lcc": { + "code": "PN4874.C84" + }, + "subject": [["Cronkite, Walter"], + ["Journalists", + "United States", + "Biography"]], + "awards": ["New York Times bestseller", + "Publishers Weekly Bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "2104704", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250934496": { + "books_id": "250934496", + "title": "Knowing God: Jewish Journeys to the Unknowable", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dorff rector and distinguished service professor of philosophy American Jewsih University, Elliot N. Rabbi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dorff rector and distinguished service professor of philosophy American Jewsih University, Elliot N. Rabbi", + "fl": "Elliot N. Rabbi Dorff rector and distinguished service professor of philosophy American Jewsih University", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685998", + "isbn": { + "0": "0876685998", + "2": "9780876685990" + }, + "asin": "0876685998", + "ean": ["0876685998"], + "publication": "Jason Aronson, Inc. (1992), Edition: First Edition, 300 pages", + "date": "1992", + "summary": "Knowing God: Jewish Journeys to the Unknowable by Elliot N. Rabbi Dorff rector and distinguished service professor of philosophy American Jewsih University (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM610 .D65" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1110528", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "300 p.; 8.66 inches", + "height": "8.66 inches", + "thickness": "1.13 inches", + "length": "6.4 inches", + "dimensions": "8.66 x 6.4 x 1.13 inches", + "weight": "1.19931470528 pounds", + "pages": "300 " +}, +"250934512": { + "books_id": "250934512", + "title": "Communicating the Infinite: The Emergence of the Habad School", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Loewenthal, Naftali", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Loewenthal, Naftali", + "fl": "Naftali Loewenthal", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226490459", + "isbn": { + "0": "0226490459", + "2": "9780226490458" + }, + "asin": "0226490459", + "ean": ["0226490459"], + "publication": "University of Chicago Press (1990), Edition: First Edition, 343 pages", + "date": "1990", + "summary": "Communicating the Infinite: The Emergence of the Habad School by Naftali Loewenthal (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198" + }, + "subject": [["Habad", + "History"], + ["Hasidism", + "History"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1670334", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "343 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "1.4 pounds", + "pages": "343 " +},"250934525": { + "books_id": "250934525", + "title": "Principle-Centered Leadership", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Covey, Stephen R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Covey, Stephen R.", + "fl": "Stephen R. Covey", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780671792800", + "isbn": ["9780671792800", + "0671792806"], + "asin": "0671792806", + "ean": ["0671792806"], + "publication": "Fireside Press (1992), Edition: Reprint, 336 pages", + "date": "1992", + "summary": "Principle-Centered Leadership by Stephen R. Covey (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["158.4"], + "wording": ["Applied psychology", + "Leadership", + "Philosophy & psychology", + "Psychology"] + }, + "lcc": { + "code": "BF637.S8 C67" + }, + "subject": { + "0": ["Achievement"], + "1": ["Commerce"], + "2": ["Leadership"], + "4": ["Success", + "Psychological aspects"], + "6": ["Success in business"], + "8": ["commerce"], + "9": ["leadership"], + "10": ["success in business"] + }, + "source": "amazon.com books", + "workcode": "4347707", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8.44 inches", + "height": "8.4375 inches", + "thickness": "0.84 inches", + "length": "5.5 inches", + "dimensions": "8.4375 x 5.5 x 0.84 inches", + "weight": "0.65256829552 pounds", + "pages": "336 " +}, +"250934530": { + "books_id": "250934530", + "title": "Spiritual Intimacy: A Study of Counseling in Hasidism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schachter-Shalomi, Zalman Meshullam", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schachter-Shalomi, Zalman Meshullam", + "fl": "Zalman Meshullam Schachter-Shalomi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876687729", + "isbn": { + "0": "0876687729", + "2": "9780876687727" + }, + "asin": "0876687729", + "ean": ["0876687729"], + "publication": "Jason Aronson Inc (1991), Edition: 1st US - 1st Printing, 405 pages", + "date": "1991", + "summary": "Spiritual Intimacy: A Study of Counseling in Hasidism by Zalman Meshullam Schachter-Shalomi (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .S295" + }, + "subject": [["Hasidism"], + ["Pastoral counseling (Judaism)"], + ["Rabbis", + "Office"]], + "source": "amazon.com books", + "workcode": "791434", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "405 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.5 inches", + "weight": "1.66008083286 pounds", + "pages": "405 " +}, +"250934574": { + "books_id": "250934574", + "title": "Ulpan: How to Learn Hebrew in a Hurry!", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schuchat, Theodor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schuchat, Theodor", + "fl": "Theodor Schuchat", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652290629", + "isbn": { + "0": "9652290629", + "2": "9789652290625" + }, + "asin": "9652290629", + "ean": ["9652290629"], + "publication": "Gefen Books (1996), 503 pages", + "date": "1996", + "summary": "Ulpan: How to Learn Hebrew in a Hurry! by Theodor Schuchat (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.407"], + "wording": ["Afro-Asiatic languages", + "Education, research, related topics of German", + "Hebrew", + "Language", + "Other languages", + "modified standard subdivisions of Hebrew"] + }, + "lcc": { + "code": "PJ4536.S39" + }, + "source": "amazon.com books", + "workcode": "22218633", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "503 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1.25 inches", + "weight": "1.85 pounds", + "pages": "503 " +}, +"250934603": { + "books_id": "250934603", + "title": "God Was Not in the Fire", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gordis, Daniel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Daniel", + "fl": "Daniel Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684825260", + "isbn": { + "0": "0684825260", + "2": "9780684825267" + }, + "asin": "0684825260", + "ean": ["0684825260"], + "publication": "Touchstone (1997), Edition: 1st Touchstone Ed, 256 pages", + "date": "1997", + "summary": "God Was Not in the Fire by Daniel Gordis (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561 .G67" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Judaism"], + "4": ["Spiritual life", + "Judaism"], + "6": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "1030277", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.6 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.6 inches", + "weight": "0.7275254646 pounds", + "pages": "256 " +}, +"250934604": { + "books_id": "250934604", + "title": "A Margin of Hope: An Intellectual Autobiography", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Howe, Irving", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Howe, Irving", + "fl": "Irving Howe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0156572451", + "isbn": { + "0": "0156572451", + "2": "9780156572453" + }, + "asin": "0156572451", + "ean": ["0156572451"], + "publication": "Mariner Books (1984), 372 pages", + "date": "1984", + "summary": "A Margin of Hope: An Intellectual Autobiography by Irving Howe (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["974.7"], + "wording": ["History & geography", + "History of North America", + "New York", + "Northeastern United States (New England and Middle Atlantic states)"] + }, + "lcc": { + "code": "F128.J5 H59" + }, + "subject": { + "0": ["Howe, Irving"], + "1": ["Jewish critics", + "New York", + "Biography"], + "2": ["Jewish critics", + "New York (State)", + "New York", + "Biography"], + "3": ["Jewish radicals", + "New York", + "Biography"], + "4": ["Jewish radicals", + "New York (State)", + "New York", + "Biography"], + "5": ["Jews", + "New York", + "Biography"], + "6": ["Jews", + "New York", + "Intellectual life"], + "7": ["Jews", + "New York (State)", + "New York", + "Biography"], + "8": ["Jews", + "New York (State)", + "New York", + "Intellectual life"], + "9": ["New York (N.Y.)", + "Biography"], + "11": ["New York (N.Y.)", + "Intellectual life"] + }, + "source": "amazon.com books", + "workcode": "751727", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "372 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1 inches", + "weight": "0.8 pounds", + "pages": "372 " +}, +"250934628": { + "books_id": "250934628", + "title": "Essays on Ancient and Modern Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Momigliano, Arnaldo", + "primaryauthorrole": "Author", + "secondaryauthor": "Berti, Silvia|Masella-Gayley, Maura", + "secondaryauthorroles": "Editor|Translator", + "authors": [{ + "lf": "Momigliano, Arnaldo", + "fl": "Arnaldo Momigliano", + "role": "Author" + }, + { + "lf": "Berti, Silvia", + "fl": "Silvia Berti", + "role": "Editor" + }, + { + "lf": "Masella-Gayley, Maura", + "fl": "Maura Masella-Gayley", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226533816", + "isbn": { + "0": "0226533816", + "2": "9780226533810" + }, + "asin": "0226533816", + "ean": ["0226533816"], + "publication": "University of Chicago Press (1994), Edition: 1, 270 pages", + "date": "1994", + "summary": "Essays on Ancient and Modern Judaism by Arnaldo Momigliano (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM160 .M6613" + }, + "source": "amazon.com books", + "workcode": "9097", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "270 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.15 pounds", + "pages": "270 " +}, +"250934654": { + "books_id": "250934654", + "title": "The Bible Code", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Drosnin, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Drosnin, Michael", + "fl": "Michael Drosnin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684849739", + "isbn": { + "0": "0684849739", + "2": "9780684849737" + }, + "asin": "0684849739", + "ean": ["0684849739"], + "publication": "Atria (1998), Edition: Edition Unstated, 272 pages", + "date": "1998", + "summary": "The Bible Code by Michael Drosnin (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.68"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS647 .D76" + }, + "subject": { + "0": ["Bible", + "Controversial literature"], + "1": ["Bible. O.T.", + "Data processing"], + "2": ["Bible. O.T.", + "Prophecies", + "Data processing"], + "3": ["Ciphers in the Bible"], + "5": ["Drosnin, Michael"], + "6": ["Rips, Eliyahu"] + }, + "series": ["\u8056\u7d93\u5bc6\u78bc", + "Bible Code"], + "originaltitle": "The Bible Code", + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "23022", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.68 inches", + "length": "7.375 inches", + "dimensions": "9.25 x 7.375 x 0.68 inches", + "weight": "1.00089866948 pounds", + "pages": "272 " +}, +"250934696": { + "books_id": "250934696", + "title": "Conversations with Elie Wiesel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Heffner, Richard D.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }, + { + "lf": "Heffner, Richard D.", + "fl": "Richard D. Heffner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211411", + "isbn": { + "0": "0805211411", + "2": "9780805211412" + }, + "asin": "0805211411", + "ean": ["0805211411"], + "publication": "Schocken (2003), Edition: Reprint, 208 pages", + "date": "2003", + "summary": "Conversations with Elie Wiesel by Elie Wiesel (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PQ2683.I32 Z4618" + }, + "subject": [["Authors, American", + "20th century", + "Interviews"], + ["Authors, French", + "20th century", + "Interviews"], + ["Wiesel, Elie, 1928-", + "Interviews"]], + "source": "amazon.com books", + "workcode": "1007419", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 8 inches", + "height": "8 inches", + "thickness": "0.5 inches", + "length": "5.2 inches", + "dimensions": "8 x 5.2 x 0.5 inches", + "weight": "0.46958461806 pounds", + "pages": "208 " +}, +"250934730": { + "books_id": "250934730", + "title": "Midnight Convoy & Other Stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yizhar, S", + "primaryauthorrole": "Author", + "secondaryauthor": "Miron, Dan", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Yizhar, S", + "fl": "S Yizhar", + "role": "Author" + }, + { + "lf": "Miron, Dan", + "fl": "Dan Miron", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592641830", + "isbn": { + "0": "1592641830", + "2": "9781592641833" + }, + "asin": "1592641830", + "ean": ["1592641830"], + "publication": "Toby Press (2007), 283 pages", + "date": "2007", + "summary": "Midnight Convoy & Other Stories by S Yizhar (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.Y6 PJ5053 .Y55" + }, + "source": "amazon.com books", + "workcode": "7034375", + "entrydate": "2023-10-17", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "283 p.; 8.48 inches", + "height": "8.48 inches", + "thickness": "0.82 inches", + "length": "5.58 inches", + "dimensions": "8.48 x 5.58 x 0.82 inches", + "weight": "0.87 pounds", + "pages": "283 " +}, +"250975261": { + "books_id": "250975261", + "title": "Gemara Chapters on Damages", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Elizur, Baruch", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elizur, Baruch", + "fl": "Baruch Elizur", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J0I6NO", + "publication": "World Zionist Organisation (1981), Edition: First Edition", + "date": "1981", + "summary": "Gemara Chapters on Damages by Baruch Elizur (1981)", + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": [], + "source": "amazon.com books", + "workcode": "9938780", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250975353": { + "books_id": "250975353", + "title": "The Bene Israel of Bombay;: A study of a Jewish community (Pavilion series. Social anthropology)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Strizower, Schifra", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Strizower, Schifra", + "fl": "Schifra Strizower", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805234055", + "isbn": { + "0": "0805234055", + "2": "9780805234053" + }, + "asin": "0805234055", + "ean": ["0805234055"], + "publication": "Schocken Books (1971), 176 pages", + "date": "1971", + "summary": "The Bene Israel of Bombay;: A study of a Jewish community (Pavilion series. Social anthropology) by Schifra Strizower (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.47"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "India and neighboring south Asian countries", + "Western India"] + }, + "lcc": { + "code": "DS135.I6 S86" + }, + "subject": [["Bene-Israel"]], + "source": "amazon.com books", + "workcode": "5561775", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "176 p.", + "weight": "1 pound", + "pages": "176 " +}, +"250975445": { + "books_id": "250975445", + "title": "Talmudic Law and the Modern State", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silberg, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silberg, Moshe", + "fl": "Moshe Silberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0838131123", + "isbn": { + "0": "0838131123", + "2": "9780838131121" + }, + "asin": "0838131123", + "ean": ["0838131123"], + "publication": "United Synagogue Book Service (1973), 224 pages", + "date": "1973", + "summary": "Talmudic Law and the Modern State by Moshe Silberg (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501" + }, + "source": "amazon.com books", + "workcode": "446973", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1 inches", + "weight": "0.9 pounds", + "pages": "224 " +}, +"250975530": { + "books_id": "250975530", + "title": "Ashkenazim and Sephardim: Their Relations, Differences, and Problems as Reflected in the Rabbinical Responsa (Jews' College Publications New Series, No. 2)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zimmels, Hirsch Jacob", + "primaryauthorrole": "Author", + "secondaryauthor": "Brodie, Israel", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Zimmels, Hirsch Jacob", + "fl": "Hirsch Jacob Zimmels", + "role": "Author" + }, + { + "lf": "Brodie, Israel", + "fl": "Israel Brodie", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "057680133X", + "isbn": { + "0": "057680133X", + "2": "9780576801331" + }, + "asin": "057680133X", + "ean": ["057680133X"], + "publication": "Gregg International Publishers (1969), Edition: Reprint, 347 pages", + "date": "1969", + "summary": "Ashkenazim and Sephardim: Their Relations, Differences, and Problems as Reflected in the Rabbinical Responsa (Jews' College Publications New Series, No. 2) by Hirsch Jacob Zimmels (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM182 .Z5" + }, + "subject": [["Ashkenazim"], + ["Judaism", + "Customs and practices"], + ["Responsa"], + ["Sephardim"]], + "source": "amazon.com books", + "workcode": "4419044", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "364 " +}, +"250975533": { + "books_id": "250975533", + "title": "The Wisdom of Israel: An Anthology", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Browne, Lewis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Browne, Lewis", + "fl": "Lewis Browne", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000OL9TKC", + "publication": "Random House (1956), Edition: First Edition, Thus, 746 pages", + "date": "1956", + "summary": "The Wisdom of Israel: An Anthology by Lewis Browne (1956)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "PN6067 .B7" + }, + "subject": { + "0": ["Jewish literature"], + "2": ["Jews", + "Literary collections"] + }, + "source": "amazon.com books", + "workcode": "1011379", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "746 p.", + "weight": "2.1 pounds", + "pages": "746 " +}, +"250975657": { + "books_id": "250975657", + "title": "The higher freedom;: A new turning point in Jewish history", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Polish, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Polish, David", + "fl": "David Polish", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DZ9E2", + "publication": "Quadrangle Books (1965), 215 pages", + "date": "1965", + "summary": "The higher freedom;: A new turning point in Jewish history by David Polish (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561.P6" + }, + "subject": { + "0": ["Jews", + "Political and social conditions"], + "1": ["Jews", + "Political and social conditions", + "1948-"], + "2": ["Judaism"], + "4": ["judaism"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "3398300", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "215 p.", + "weight": "0.9 pounds", + "pages": "215 " +}, +"250975795": { + "books_id": "250975795", + "title": "Terror out of Zion: Irgun Zvai Leumi, LEHI, and the Palestine underground, 1929-1949", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bell, J. Bowyer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bell, J. Bowyer", + "fl": "J. Bowyer Bell", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0312792050", + "isbn": { + "0": "0312792050", + "2": "9780312792053" + }, + "asin": "0312792050", + "ean": ["0312792050"], + "publication": "St. Martin's Press (1977), Edition: First Edition, 374 pages", + "date": "1977", + "summary": "Terror out of Zion: Irgun Zvai Leumi, LEHI, and the Palestine underground, 1929-1949 by J. Bowyer Bell (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS119 .B382" + }, + "subject": [["Israel-Arab War, 1948-1949"], + ["Palestine", + "History", + "1929-1948"]], + "source": "amazon.com books", + "workcode": "2578537", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "374 p.", + "height": "9.4 inches", + "thickness": "1.4 inches", + "length": "6.2 inches", + "dimensions": "9.4 x 6.2 x 1.4 inches", + "weight": "1 pound", + "pages": "374 " +}, +"250975877": { + "books_id": "250975877", + "title": "A Chapter of Talmud", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Layfer, Lawrence F.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Layfer, Lawrence F.", + "fl": "Lawrence F. Layfer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "193444006X", + "isbn": { + "0": "193444006X", + "2": "9781934440063" + }, + "asin": "193444006X", + "ean": ["193444006X"], + "publication": "Devora Publishing (2008), 152 pages", + "date": "2008", + "summary": "A Chapter of Talmud by Lawrence F. Layfer (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": [], + "source": "amazon.com books", + "workcode": "7824685", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "152 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.5 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.5 inches", + "weight": "0.82011961464 pounds", + "pages": "152 " +}, +"250975976": { + "books_id": "250975976", + "title": "Tanna Debe Eliyyahu: The Lore of the School of Elijah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Braude, William G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Braude, William G.", + "fl": "William G. Braude", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827606346", + "isbn": { + "0": "0827606346", + "2": "9780827606340" + }, + "asin": "0827606346", + "ean": ["0827606346"], + "publication": "JEWISH PUBLICATON SOCIETY (1997), 624 pages", + "date": "1997", + "summary": "Tanna Debe Eliyyahu: The Lore of the School of Elijah by William G. Braude (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM517.T4 E5" + }, + "source": "amazon.com books", + "workcode": "1288779", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "624 p.; 8.56 inches", + "height": "8.56 inches", + "thickness": "1.54 inches", + "length": "6.76 inches", + "dimensions": "8.56 x 6.76 x 1.54 inches", + "weight": "2 pounds", + "pages": "624 " +}, +"250976409": { + "books_id": "250976409", + "title": "the emergence of conservative judaism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "davis, moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "davis, moshe", + "fl": "moshe davis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GW3QNK", + "publication": "Jewish Publication Society of America (1963), Edition: 1st Edition", + "date": "1963", + "summary": "the emergence of conservative judaism by moshe davis (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.834"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Other religions", + "Reformist Movements", + "Religion"] + }, + "lcc": { + "code": "BM197.D3" + }, + "subject": [["Conservative Judaism", + "History"], + ["Judaism", + "United States", + "History"]], + "series": ["The Jacob R. Schiff Library of Jewish Contributions to American Democracy"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "422260", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"250976803": { + "books_id": "250976803", + "title": "The Jewish Marriage Contract: A Study in the Status of the Woman in Jewish Law", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Epstein, Louis M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Epstein, Louis M.", + "fl": "Louis M. Epstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1616195118", + "isbn": { + "0": "1616195118", + "2": "9781616195113" + }, + "asin": "1616195118", + "ean": ["1616195118"], + "publication": "The Lawbook Exchange, Ltd. (2005), 316 pages", + "date": "2005", + "summary": "The Jewish Marriage Contract: A Study in the Status of the Woman in Jewish Law by Louis M. Epstein (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "HQ507.E6" + }, + "source": "amazon.com books", + "workcode": "20416783", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "316 p.; 9 inches", + "height": "9 inches", + "thickness": "0.76 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.76 inches", + "weight": "1.08908357428 pounds", + "pages": "316 " +}, +"250976846": { + "books_id": "250976846", + "title": "Seeker of Unity: The Life and Works of Aaron of Starosselje", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobs, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jacobs, Louis", + "fl": "Louis Jacobs", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0853035911", + "isbn": { + "0": "0853035911", + "2": "9780853035916" + }, + "asin": "0853035911", + "ean": ["0853035911"], + "publication": "Vallentine Mitchell (2006), 168 pages", + "date": "2006", + "summary": "Seeker of Unity: The Life and Works of Aaron of Starosselje by Louis Jacobs (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.A14 J3" + }, + "source": "amazon.com books", + "workcode": "1610133", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "168 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.4 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.4 inches", + "weight": "0.50044933474 pounds", + "pages": "168 " +}, +"250977092": { + "books_id": "250977092", + "title": "Sex Laws and Customs in Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Epstein, Louis M.; Ari Kiev (Introduction by)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Epstein, Louis M.; Ari Kiev (Introduction by)", + "fl": "Louis M.; Ari Kiev (Introduction by) Epstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0037FF9R4", + "publication": "KTAV Publishing House (1967), Edition: Reprint", + "date": "1967", + "summary": "Sex Laws and Customs in Judaism by Louis M.; Ari Kiev (Introduction by) Epstein (1967)", + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM720.S4 E6" + }, + "subject": [["Jewish ethics"], + ["Sex and Judaism"]], + "source": "amazon.com books", + "workcode": "856142", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250977177": { + "books_id": "250977177", + "title": "Jewish Medical Ethics: A Comparative and Historical Study of the Jewish Religious Attitude to Medicine and Its Practice", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jakobovits, Immanuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jakobovits, Immanuel", + "fl": "Immanuel Jakobovits", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819700975", + "isbn": { + "0": "0819700975", + "2": "9780819700971" + }, + "asin": "0819700975", + "ean": ["0819700975"], + "publication": "Bloch Pub Co (1975), 465 pages", + "date": "1975", + "summary": "Jewish Medical Ethics: A Comparative and Historical Study of the Jewish Religious Attitude to Medicine and Its Practice by Immanuel Jakobovits (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["174.2"], + "wording": ["Ethics", + "Occupational ethics", + "Philosophy & psychology", + "Physicians"] + }, + "lcc": { + "code": "R724 .J34" + }, + "subject": { + "0": ["Jewish ethics"], + "2": ["Medical Ethics"], + "3": ["Medical ethics"], + "5": ["Medicine", + "Judaism"], + "6": ["Medicine", + "Religious aspects", + "Judaism"] + }, + "source": "amazon.com books", + "workcode": "2938187", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "465 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.25 inches", + "dimensions": "8.5 x 5.25 x 1 inches", + "weight": "1.5 pounds", + "pages": "465 " +}, +"250977255": { + "books_id": "250977255", + "title": "Understanding the Talmud", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Corre, Alan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Corre, Alan", + "fl": "Alan Corre", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870681400", + "isbn": { + "0": "0870681400", + "2": "9780870681400" + }, + "asin": "0870681400", + "ean": ["0870681400"], + "publication": "Ktav Pub. House (1975), 468 pages", + "date": "1975", + "summary": "Understanding the Talmud by Alan Corre (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496.U52" + }, + "source": "amazon.com books", + "workcode": "7025316", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "468 p.", + "height": "9 inches", + "thickness": "1.3 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.3 inches", + "weight": "1.763698096 pounds", + "pages": "468 " +}, +"250977411": { + "books_id": "250977411", + "title": "Introduction to the Talmud and Midrash", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Strack, Hermann L.", + "primaryauthorrole": "Author", + "secondaryauthor": "Bockmuehl, Markus|Stemberger, Günter", + "secondaryauthorroles": "Translator|Author", + "authors": [{ + "lf": "Strack, Hermann L.", + "fl": "Hermann L. Strack", + "role": "Author" + }, + { + "lf": "Bockmuehl, Markus", + "fl": "Markus Bockmuehl", + "role": "Translator" + }, + { + "lf": "Stemberger, Günter", + "fl": "Günter Stemberger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0800625242", + "isbn": { + "0": "0800625242", + "2": "9780800625245" + }, + "asin": "0800625242", + "ean": ["0800625242"], + "publication": "Fortress Press (1996), Edition: Reprint, 488 pages", + "date": "1996", + "summary": "Introduction to the Talmud and Midrash by Hermann L. Strack (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .S8713" + }, + "source": "amazon.com books", + "workcode": "29442129", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "488 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.25 inches", + "weight": "1.18 pounds", + "pages": "488 " +}, +"250977618": { + "books_id": "250977618", + "title": "A Guest for the Night", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Agnon, S. Y.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agnon, S. Y.", + "fl": "S. Y. Agnon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643574", + "isbn": { + "0": "1592643574", + "2": "9781592643578" + }, + "asin": "1592643574", + "ean": ["1592643574"], + "publication": "The Toby Press (2015), Edition: New forward by Jeffrey Saks, 531 pages", + "date": "2015", + "summary": "A Guest for the Night by S. Y. Agnon (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.A2733 G" + }, + "subject": [["Jewish fiction"], + ["Jews", + "Europe, Eastern", + "Fiction"], + ["Jews", + "Fiction"]], + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "1184651", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "531 p.; 8.4 inches", + "height": "8.4 inches", + "thickness": "1.3 inches", + "length": "5.5 inches", + "dimensions": "8.4 x 5.5 x 1.3 inches", + "weight": "1.41 pounds", + "pages": "531 " +}, +"250977784": { + "books_id": "250977784", + "title": "Modern English-Hebrew Dictionary", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zilkha, Avraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zilkha, Avraham", + "fl": "Avraham Zilkha", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300090056", + "isbn": { + "0": "0300090056", + "2": "9780300090055" + }, + "asin": "0300090056", + "ean": ["0300090056"], + "publication": "Yale University Press (2002), Edition: Bilingual, 457 pages", + "date": "2002", + "summary": "Modern English-Hebrew Dictionary by Avraham Zilkha (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["423.924"], + "wording": ["Dictionaries of standard English", + "English & Old English languages", + "English + Afro-Asiatic languages", + "English + Hebrew dictionaries", + "English + Other languages", + "Language"] + }, + "lcc": { + "code": "PJ4833 .Z57" + }, + "source": "amazon.com books", + "workcode": "457833", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "457 p.; 9.24 x 1.18 inches", + "height": "1.18 inches", + "thickness": "6.15 inches", + "length": "9.24 inches", + "dimensions": "1.18 x 9.24 x 6.15 inches", + "weight": "1.73944724718 pounds", + "pages": "457 " +}, +"250977847": { + "books_id": "250977847", + "title": "The Practical Talmud Dictionary (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rabbi Yitzhak Frank", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Yitzhak Frank", + "fl": "Rabbi Yitzhak Frank", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592644511", + "isbn": { + "0": "1592644511", + "2": "9781592644513" + }, + "asin": "1592644511", + "ean": ["1592644511"], + "publication": "Maggid (2016), Edition: Bilingual, 303 pages", + "date": "2016", + "summary": "The Practical Talmud Dictionary (English and Hebrew Edition) by Rabbi Yitzhak Frank (2016)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["492.432"], + "wording": ["Afro-Asiatic languages", + "Dictionaries of Hebrew", + "Hebrew", + "Hebrew - English and Old English", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ5305.F73" + }, + "source": "amazon.com books", + "workcode": "18688493", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "303 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6.3 inches", + "dimensions": "9 x 6.3 x 1 inches", + "weight": "1.45064168396 pounds", + "pages": "303 " +}, +"250977898": { + "books_id": "250977898", + "title": "Tractate Ta'anis : commentary and study guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Nachman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Nachman", + "fl": "Nachman Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B003KD4460", + "publication": "Torah Lishmah Institute (1984)", + "date": "1984", + "summary": "Tractate Ta'anis : commentary and study guide by Nachman Cohen (1984)", + "language": ["Undetermined"], + "language_codeA": ["und"], + "originallanguage_codeA": ["und"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM506.T23 C64" + }, + "source": "amazon.com books", + "workcode": "9937312", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"250977933": { + "books_id": "250977933", + "title": "Hebrew Calligraphy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenspan, Jay", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenspan, Jay", + "fl": "Jay Greenspan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805206647", + "isbn": { + "0": "0805206647", + "2": "9780805206647" + }, + "asin": "0805206647", + "ean": ["0805206647"], + "publication": "Schocken (1987), 166 pages", + "date": "1987", + "summary": "Hebrew Calligraphy by Jay Greenspan (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["745.6"], + "wording": ["Arts & recreation", + "Calligraphy, illumination, heraldic design", + "Decorative arts", + "Design & related arts"] + }, + "lcc": { + "code": "NK3636.A3 G73" + }, + "source": "amazon.com books", + "workcode": "2339710", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "166 p.", + "weight": "0.64815905028 pounds", + "pages": "166 " +}, +"250977968": { + "books_id": "250977968", + "title": "Entering Jewish Prayer: A Guide to Personal Devotion and the Worship Service", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hammer, Reuven", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hammer, Reuven", + "fl": "Reuven Hammer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210229", + "isbn": { + "0": "0805210229", + "2": "9780805210224" + }, + "asin": "0805210229", + "ean": ["0805210229"], + "publication": "Schocken (1995), 368 pages", + "date": "1995", + "summary": "Entering Jewish Prayer: A Guide to Personal Devotion and the Worship Service by Reuven Hammer (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM660 .H27" + }, + "subject": { + "0": ["Judaism", + "History"], + "1": ["Judaism", + "Liturgy", + "History"], + "2": ["Prayer", + "Judaism"], + "4": ["Siddur"] + }, + "source": "amazon.com books", + "workcode": "202724", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 7.98 inches", + "height": "7.98 inches", + "thickness": "0.82 inches", + "length": "5.21 inches", + "dimensions": "7.98 x 5.21 x 0.82 inches", + "weight": "0.68784225744 pounds", + "pages": "368 " +}, +"250977993": { + "books_id": "250977993", + "title": "A Book that Was Lost: and Other Stories", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Agnon, Shmuel Yosef", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agnon, Shmuel Yosef", + "fl": "Shmuel Yosef Agnon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210660", + "isbn": { + "0": "0805210660", + "2": "9780805210668" + }, + "asin": "0805210660", + "ean": ["0805210660"], + "publication": "Schocken (1996), 448 pages", + "date": "1996", + "summary": "A Book that Was Lost: and Other Stories by Shmuel Yosef Agnon (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 A26" + }, + "subject": [["Agnon, Shmuel Yosef, 1888-1970", + "Translations into English"]], + "originaltitle": "A Book That Was Lost & Other Stories", + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "29124", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1 inch", + "length": "5.25 inches", + "dimensions": "8.25 x 5.25 x 1 inches", + "weight": "0.9 pounds", + "pages": "448 " +}, +"250978038": { + "books_id": "250978038", + "title": "Revelation Restored: Divine Writ and Critical Responses (Radical Traditions)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weiss Halivni, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weiss Halivni, David", + "fl": "David Weiss Halivni", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813333474", + "isbn": { + "0": "0813333474", + "2": "9780813333472" + }, + "asin": "0813333474", + "ean": ["0813333474"], + "publication": "Westview Press (1998), Edition: 1, 144 pages", + "date": "1998", + "summary": "Revelation Restored: Divine Writ and Critical Responses (Radical Traditions) by David Weiss Halivni (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.101"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2" + }, + "series": ["Radical Traditions"], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1355854", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 9 inches", + "height": "9 inches", + "thickness": "0.33 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.33 inches", + "weight": "0.44974301448 pounds", + "pages": "144 " +}, +"250978116": { + "books_id": "250978116", + "title": "SONGS OF THE HEART: An Introduction to the Book of Psalms", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sarna, Nahum M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sarna, Nahum M.", + "fl": "Nahum M. Sarna", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805240802", + "isbn": { + "0": "0805240802", + "2": "9780805240801" + }, + "asin": "0805240802", + "ean": ["0805240802"], + "publication": "Schocken (1993), Edition: First Edition, 298 pages", + "date": "1993", + "summary": "SONGS OF THE HEART: An Introduction to the Book of Psalms by Nahum M. Sarna (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.206"], + "wording": ["Bible. O.T.--Psalms--exegesis", + "Poetic books of Old Testament", + "Psalms", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1430 .S235" + }, + "source": "amazon.com books", + "workcode": "1100244", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "298 p.; 9.06 inches", + "height": "9.0551 inches", + "thickness": "1.06299 inches", + "length": "6.37794 inches", + "dimensions": "9.0551 x 6.37794 x 1.06299 inches", + "weight": "1.35 pounds", + "pages": "298 " +}, +"250978123": { + "books_id": "250978123", + "title": "The Book And The Sword: A Life Of Learning In The Shadow Of Destruction", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Halivni, David Weiss", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Halivni, David Weiss", + "fl": "David Weiss Halivni", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0367305860", + "isbn": { + "0": "0367305860", + "2": "9780367305864" + }, + "asin": "0367305860", + "ean": ["0367305860"], + "publication": "Routledge (2021), Edition: 1, 208 pages", + "date": "2021", + "summary": "The Book And The Sword: A Life Of Learning In The Shadow Of Destruction by David Weiss Halivni (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135.R73 H36" + }, + "source": "amazon.com books", + "workcode": "923545", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 8.66 inches", + "height": "8.6614 inches", + "thickness": "0.47 inches", + "length": "5.15747 inches", + "dimensions": "8.6614 x 5.15747 x 0.47 inches", + "weight": "0.54895103238 pounds", + "pages": "208 " +}, +"250978202": { + "books_id": "250978202", + "title": "The Shadows Within: Essays on the Modern Jewish Writers", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shaked, Gershon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shaked, Gershon", + "fl": "Gershon Shaked", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602952", + "isbn": { + "0": "0827602952", + "2": "9780827602953" + }, + "asin": "0827602952", + "ean": ["0827602952"], + "publication": "Jewish Pubn Society (1987), Edition: 1, 198 pages", + "date": "1987", + "summary": "The Shadows Within: Essays on the Modern Jewish Writers by Gershon Shaked (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["809.889"], + "wording": ["By or for groups of persons", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "PN842 .S53" + }, + "source": "amazon.com books", + "workcode": "6308768", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "198 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1 pound", + "pages": "198 " +}, +"250978218": { + "books_id": "250978218", + "title": "Between Exile and Return: S. Y. Agnon and The Drama of Writing (Suny Series in Modern Jewish Literature and Culture) (Suny Modern Jewish Literature and Culture)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hoffman, Anne Golomb", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hoffman, Anne Golomb", + "fl": "Anne Golomb Hoffman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791405419", + "isbn": { + "0": "0791405419", + "2": "9780791405413" + }, + "asin": "0791405419", + "ean": ["0791405419"], + "publication": "State University of New York Press (1991), 252 pages", + "date": "1991", + "summary": "Between Exile and Return: S. Y. Agnon and The Drama of Writing (Suny Series in Modern Jewish Literature and Culture) (Suny Modern Jewish Literature and Culture) by Anne Golomb Hoffman (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 Z614" + }, + "source": "amazon.com books", + "workcode": "18833722", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "252 p.; 8.29 inches", + "height": "8.29 inches", + "thickness": "0.57 inches", + "length": "5.17 inches", + "dimensions": "8.29 x 5.17 x 0.57 inches", + "weight": "0.7605948039 pounds", + "pages": "252 " +}, +"250978302": { + "books_id": "250978302", + "title": "The Middle Gate: A Hungarian Jewish Boyhood", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Joseph Patai", + "primaryauthorrole": "Author", + "secondaryauthor": "Joseph Patai", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Joseph Patai", + "fl": "Joseph Patai", + "role": "Author" + }, + { + "lf": "Joseph Patai", + "fl": "Joseph Patai", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760517X", + "isbn": { + "0": "082760517X", + "2": "9780827605176" + }, + "asin": "082760517X", + "ean": ["082760517X"], + "publication": "Jewish Publication Society March (1995), Edition: 1, 144 pages", + "date": "1995", + "summary": "The Middle Gate: A Hungarian Jewish Boyhood by Joseph Patai (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hungarian"], + "originallanguage_codeA": ["eng", + "hun"], + "ddc": { + "code": ["943.7"], + "wording": ["Czech Republic and Slovakia", + "Germany and neighboring central European countries", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DS135.H93 P35713" + }, + "source": "amazon.com books", + "workcode": "15784241", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "144 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "8.6 pounds", + "pages": "144 " +}, +"250978328": { + "books_id": "250978328", + "title": "At the Handles of the Lock: Themes in the Fiction of Shmuel Yosef Agnon (Littman Library of Jewish Civilization)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Aberbach, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Aberbach, David", + "fl": "David Aberbach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0197100406", + "isbn": { + "0": "0197100406", + "2": "9780197100400" + }, + "asin": "0197100406", + "ean": ["0197100406"], + "publication": "The Littman Library of Jewish Civilization in association with Liverpool University Press (1984), Edition: 1, 222 pages", + "date": "1984", + "summary": "At the Handles of the Lock: Themes in the Fiction of Shmuel Yosef Agnon (Littman Library of Jewish Civilization) by David Aberbach (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 Z54" + }, + "source": "amazon.com books", + "workcode": "11839648", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "222 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "0.9 inches", + "length": "6.3 inches", + "dimensions": "9.5 x 6.3 x 0.9 inches", + "weight": "1.1904962148 pounds", + "pages": "222 " +}, +"250978414": { + "books_id": "250978414", + "title": "Power & Powerlessness in Jewish History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Biale, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Biale, David", + "fl": "David Biale", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805208410", + "isbn": { + "0": "0805208410", + "2": "9780805208412" + }, + "asin": "0805208410", + "ean": ["0805208410"], + "publication": "Knopf Doubleday Publishing Group (1986), Edition: New edition, 256 pages", + "date": "1986", + "summary": "Power & Powerlessness in Jewish History by David Biale (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS134 .B53" + }, + "subject": [["Israel", + "International status"], + ["Jewish diaspora"], + ["Jews", + "Philosophy"], + ["Jews", + "Politics and government"], + ["Jews", + "United States", + "Politics and government"], + ["Power (Social sciences)"], + ["Sovereignty"], + ["United States", + "Ethnic relations"], + ["power (social sciences)"]], + "originaltitle": "Power and Powerlessness in Jewish History", + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "2332430", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.58 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.58 inches", + "weight": "0.54895103238 pounds", + "pages": "256 " +}, +"250978466": { + "books_id": "250978466", + "title": "Post-Holocaust Dialogues: Critical Studies in Modern Jewish Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Steven T.", + "primaryauthorrole": "Author", + "secondaryauthor": "Gladstone, J. Francis.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Katz, Steven T.", + "fl": "Steven T. Katz", + "role": "Author" + }, + { + "lf": "Gladstone, J. Francis.", + "fl": "J. Francis. Gladstone", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814745873", + "isbn": { + "0": "0814745873", + "2": "9780814745878" + }, + "asin": "0814745873", + "ean": ["0814745873"], + "publication": "NYU Press (1985), 1 pages", + "date": "1985", + "summary": "Post-Holocaust Dialogues: Critical Studies in Modern Jewish Thought by Steven T. Katz (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .K358" + }, + "subject": [["Holocaust (Jewish theology)"], + ["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["Judaism", + "Doctrines"], + ["Philosophy, Jewish"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "2282356", + "entrydate": "2023-10-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 0.75 inches", + "weight": "1.0141264052 pounds", + "pages": "1 " +}, +"254760598": { + "books_id": "254760598", + "title": "Moshe Dayan,: The soldier, the man, the legend", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Teveth, Shabtai", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Teveth, Shabtai", + "fl": "Shabtai Teveth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0395154758", + "isbn": { + "0": "0395154758", + "2": "9780395154755" + }, + "asin": "0395154758", + "ean": ["0395154758"], + "publication": "Houghton Mifflin (1973), 372 pages", + "date": "1973", + "summary": "Moshe Dayan,: The soldier, the man, the legend by Shabtai Teveth (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.D3 T4213" + }, + "subject": [["Dayan, Moshe, 1915-1981"]], + "source": "amazon.com books", + "workcode": "2215569", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "372 p.", + "height": "9.1 inches", + "thickness": "1.4 inches", + "length": "6.2 inches", + "dimensions": "9.1 x 6.2 x 1.4 inches", + "weight": "1.7 pounds", + "pages": "372 " +}, +"254760618": { + "books_id": "254760618", + "title": "Berlitz Self Teacher: Hebrew", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berlitz Schools of Languages", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berlitz Schools of Languages", + "fl": "Berlitz Schools of Languages", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0448014238", + "isbn": { + "0": "0448014238", + "2": "9780448014234" + }, + "asin": "0448014238", + "ean": ["0448014238"], + "publication": "Grosset & Dunlap (2000)", + "date": "2000", + "summary": "Berlitz Self Teacher: Hebrew by Berlitz Schools of Languages (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.48242"], + "wording": ["Afro-Asiatic languages", + "For people speaking English and Old English", + "Hebrew", + "Language", + "Other languages", + "Standard Hebrew usage; applied linguistics; texts for learning the language", + "Structural approach to expression for people whose native language is different", + "Structural approach to expression; formal grammar"] + }, + "lcc": { + "code": "PJ4567.B4" + }, + "series": ["Berlitz Self-Teacher"], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "2850758", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.1 inches", + "thickness": "1.2 inches", + "length": "5.4 inches", + "dimensions": "8.1 x 5.4 x 1.2 inches", + "weight": "1.01 pounds" +}, +"254761039": { + "books_id": "254761039", + "title": "Moshe Dayan", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dayan, Mosche", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dayan, Mosche", + "fl": "Mosche Dayan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0306804972", + "isbn": { + "0": "0306804972", + "2": "9780306804977" + }, + "asin": "0306804972", + "ean": ["0306804972"], + "publication": "Da Capo Press (1992), Edition: First Edition, 640 pages", + "date": "1992", + "summary": "Moshe Dayan by Mosche Dayan (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.D3 A35" + }, + "subject": { + "0": ["Dayan, Moshe"], + "1": ["Dayan, Moshe, 1915-1981"], + "2": ["Generals", + "Israel", + "Biography"], + "4": ["Israel", + "Armed Forces", + "Biography"], + "5": ["Israel", + "Biography"], + "6": ["Statesmen", + "Israel", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "282505", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "640 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.5 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.5 inches", + "weight": "1.8959754532 pounds", + "pages": "640 " +}, +"254761059": { + "books_id": "254761059", + "title": "The Strife of the Spirit: A Collection of Talks, Writings and Conversations", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Rabbi Adin Even-Israel", + "primaryauthorrole": "Author", + "secondaryauthor": "Kurzweil, Arthur", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Steinsaltz, Rabbi Adin Even-Israel", + "fl": "Rabbi Adin Even-Israel Steinsaltz", + "role": "Author" + }, + { + "lf": "Kurzweil, Arthur", + "fl": "Arthur Kurzweil", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643183", + "isbn": { + "0": "1592643183", + "2": "9781592643189" + }, + "asin": "1592643183", + "ean": ["1592643183"], + "publication": "Maggid (2011), Edition: Reprint, 266 pages", + "date": "2011", + "summary": "The Strife of the Spirit: A Collection of Talks, Writings and Conversations by Rabbi Adin Even-Israel Steinsaltz (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .S798213" + }, + "source": "amazon.com books", + "workcode": "1697110", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "266 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.1 inches", + "length": "5.7 inches", + "dimensions": "8.5 x 5.7 x 1.1 inches", + "weight": "1.01 pounds", + "pages": "266 " +}, +"254761066": { + "books_id": "254761066", + "title": "With All Your Possessions:Jewish Ethics and Economic Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Tamari, Meir", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Tamari, Meir", + "fl": "Meir Tamari", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643116", + "isbn": { + "0": "1592643116", + "2": "9781592643110" + }, + "asin": "1592643116", + "ean": ["1592643116"], + "publication": "Koren Publishers Jerusalem (2014), Edition: Kupietzky ed., 392 pages", + "date": "2014", + "summary": "With All Your Possessions:Jewish Ethics and Economic Life by Meir Tamari (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["346.07"], + "wording": ["Commercial & Business Law", + "International", + "Law", + "Private Law", + "Social sciences"] + }, + "lcc": { + "code": "R296.933 TAM1098036" + }, + "source": "amazon.com books", + "workcode": "1298440", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "392 p.; 8.92 inches", + "height": "8.92 inches", + "thickness": "1.29 inches", + "length": "5.84 inches", + "dimensions": "8.92 x 5.84 x 1.29 inches", + "weight": "1.4 pounds", + "pages": "392 " +}, +"254761124": { + "books_id": "254761124", + "title": "The Essential Talmud", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465082734", + "isbn": { + "0": "0465082734", + "2": "9780465082735" + }, + "asin": "0465082734", + "ean": ["0465082734"], + "publication": "Basic Books (2006), Edition: -30th Anniversary ed., 336 pages", + "date": "2006", + "summary": "The Essential Talmud by Adin Steinsaltz (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .S79913" + }, + "subject": [["Talmud", + "Introductions"]], + "originaltitle": "ha-Talmud la-kol", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "29211", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8 x 5.25 inches", + "height": "5.25 inches", + "thickness": "1 inch", + "length": "8 inches", + "dimensions": "5.25 x 8 x 1 inches", + "weight": "0.64 pounds", + "pages": "336 " +}, +"254761125": { + "books_id": "254761125", + "title": "The Sustaining Utterance: Discourses on Chasidic Thought (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "primaryauthorrole": "Author", + "secondaryauthor": "Hanegbi, Yehuda|Hanegbi, Yehuda", + "secondaryauthorroles": "Editor|Translator", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }, + { + "lf": "Hanegbi, Yehuda", + "fl": "Yehuda Hanegbi", + "role": "Editor" + }, + { + "lf": "Hanegbi, Yehuda", + "fl": "Yehuda Hanegbi", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688458", + "isbn": { + "0": "0876688458", + "2": "9780876688458" + }, + "asin": "0876688458", + "ean": ["0876688458"], + "publication": "Jason Aronson Inc (1989), Edition: First Edition, 129 pages", + "date": "1989", + "summary": "The Sustaining Utterance: Discourses on Chasidic Thought (English and Hebrew Edition) by Adin Steinsaltz (1989)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.83322"], + "wording": ["Chasidic", + "Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Lubavitcher", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.S4863 S74" + }, + "subject": [["Hasidism"], + ["Shneur Zalman, of Lyady, 1745-1813. Sha?ar ha-yi?hud ?veha-emunah"]], + "source": "amazon.com books", + "workcode": "1578036", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "129 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "0.75 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 0.75 inches", + "weight": "0.76941329438 pounds", + "pages": "129 " +}, +"254761640": { + "books_id": "254761640", + "title": "A Tzaddik in Our Time: The Life of Rabbi Aryeh Levin", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Raz, Simcha", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raz, Simcha", + "fl": "Simcha Raz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1598262491", + "isbn": { + "0": "1598262491", + "2": "9781598262490" + }, + "asin": "1598262491", + "ean": ["1598262491"], + "publication": "Feldheim Publishers (2008), Edition: Revised, 512 pages", + "date": "2008", + "summary": "A Tzaddik in Our Time: The Life of Rabbi Aryeh Levin by Simcha Raz (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.L446 R3813" + }, + "subject": { + "0": ["Jerusalem", + "Biography"], + "2": ["Jews", + "Jerusalem", + "Social life and customs"], + "4": ["Levin, Aryeh, 1885-1969"], + "5": ["Le? vin, Aryeh, 1885-1969"], + "6": ["Prison chaplains", + "Jerusalem", + "Biography"], + "8": ["Rabbis", + "Jerusalem", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "460192", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "512 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.75 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.75 inches", + "weight": "2.03 pounds", + "pages": "512 " +}, +"254761922": { + "books_id": "254761922", + "title": "Women and Jewish Divorce: The Rebellious Wife, the Agunah and the Right of Women to Initiate Divorce, in Jewish Law, a Halakhic Solution (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Riskin, Shlomo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Riskin, Shlomo", + "fl": "Shlomo Riskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881251224", + "isbn": { + "0": "0881251224", + "2": "9780881251227" + }, + "asin": "0881251224", + "ean": ["0881251224"], + "publication": "Ktav Pub & Distributors Inc (1989), Edition: First Edition, 196 pages", + "date": "1989", + "summary": "Women and Jewish Divorce: The Rebellious Wife, the Agunah and the Right of Women to Initiate Divorce, in Jewish Law, a Halakhic Solution (English and Hebrew Edition) by Shlomo Riskin (1989)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "KBM558.R57" + }, + "subject": [["Agunahs", + "History"], + ["Divorce (Jewish law)", + "History"], + ["Husband and wife (Jewish law)", + "History"], + ["Rabbinical literature", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "1634669", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "196 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1.05 pounds", + "pages": "196 " +}, +"254762252": { + "books_id": "254762252", + "title": "The Essential Writings of Abraham Isaac Kook", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kook, Abraham Isaac", + "primaryauthorrole": "Author", + "secondaryauthor": "Bokser, Ben Zion|Bokser, Ben Zion", + "secondaryauthorroles": "Editor|Translator", + "authors": [{ + "lf": "Kook, Abraham Isaac", + "fl": "Abraham Isaac Kook", + "role": "Author" + }, + { + "lf": "Bokser, Ben Zion", + "fl": "Ben Zion Bokser", + "role": "Editor" + }, + { + "lf": "Bokser, Ben Zion", + "fl": "Ben Zion Bokser", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "097698623X", + "isbn": { + "0": "097698623X", + "2": "9780976986232" + }, + "asin": "097698623X", + "ean": ["097698623X"], + "publication": "Ben Yehuda Press (2006), 228 pages", + "date": "2006", + "summary": "The Essential Writings of Abraham Isaac Kook by Abraham Isaac Kook (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.K66 A25" + }, + "subject": [["Judaism"], + ["Kook, Abraham Isaac, 1865-1935"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "615795", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "228 p.; 9 inches", + "height": "9 inches", + "thickness": "0.52 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.52 inches", + "weight": "0.75177631342 pounds", + "pages": "228 " +}, +"254762260": { + "books_id": "254762260", + "title": "The Bamboo Cradle a Jewish Father's Story", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schwartzbaum, Avraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schwartzbaum, Avraham", + "fl": "Avraham Schwartzbaum", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NBJBXI", + "publication": "Feldheim Publishers (1989), Edition: Second", + "date": "1989", + "summary": "The Bamboo Cradle a Jewish Father's Story by Avraham Schwartzbaum (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924024"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 S377" + }, + "source": "amazon.com books", + "workcode": "2181594", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"254762282": { + "books_id": "254762282", + "title": "Reader in Modern Hebrew Literature", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rubinstein, Anton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rubinstein, Anton", + "fl": "Anton Rubinstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000F6DSJO", + "publication": "The Board of Jewish Education (1956), 192 pages", + "date": "1956", + "summary": "Reader in Modern Hebrew Literature by Anton Rubinstein (1956)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PJ4571.R79 H" + }, + "source": "amazon.com books", + "workcode": "5741599", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"254762285": { + "books_id": "254762285", + "title": "Not free to desist;: The American Jewish Committee, 1906-1966", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Naomi Wiener", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Naomi Wiener", + "fl": "Naomi Wiener Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006C0VFQ", + "publication": "Jewish Publication Society of America (1972), Edition: First Edition, 652 pages", + "date": "1972", + "summary": "Not free to desist;: The American Jewish Committee, 1906-1966 by Naomi Wiener Cohen (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "E184.J5 C62" + }, + "subject": [["Jews", + "United States", + "Politics and government"]], + "source": "amazon.com books", + "workcode": "4725868", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "652 p.", + "weight": "2 pounds", + "pages": "652 " +}, +"254762307": { + "books_id": "254762307", + "title": "The Wings of the Dove: Jewish Values, Science and Halachah (B'nai B'rith Judaica library)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Weiss, David W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weiss, David W.", + "fl": "David W. Weiss", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0935437207", + "isbn": { + "0": "0935437207", + "2": "9780935437201" + }, + "asin": "0935437207", + "ean": ["0935437207"], + "publication": "B'nai B'rith Books (1987), Edition: First Edition, 205 pages", + "date": "1987", + "summary": "The Wings of the Dove: Jewish Values, Science and Halachah (B'nai B'rith Judaica library) by David W. Weiss (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520 .W45" + }, + "series": ["B'nai B'rith Judaica Library"], + "genre": ["Nonfiction", + "Philosophy", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "2932609", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "205 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.1 pounds", + "pages": "205 " +}, +"254762311": { + "books_id": "254762311", + "title": "Who Wrote the Bible?", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedman, Richard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friedman, Richard", + "fl": "Richard Friedman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "150119240X", + "isbn": { + "0": "150119240X", + "2": "9781501192401" + }, + "asin": "150119240X", + "ean": ["150119240X"], + "publication": "Simon & Schuster (2019), 304 pages", + "date": "2019", + "summary": "Who Wrote the Bible? by Richard Friedman (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1066"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225 .F75" + }, + "subject": [["Bible. O.T. Historical Books", + "Criticism, interpretation, etc"], + ["Bible. O.T. Historical books", + "Authorship"], + ["Bible. O.T. Historical books", + "Criticism, interpretation, etc"], + ["Bible. O.T. Pentateuch", + "Authorship"], + ["Bible. O.T. Pentateuch", + "Criticism, interpretation, etc"], + ["Documentary hypothesis (Pentateuchal criticism)"]], + "originaltitle": "Who wrote the Bible?", + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106598", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8.38 inches", + "height": "8.375 inches", + "thickness": "0.7 inches", + "length": "5.5 inches", + "dimensions": "8.375 x 5.5 x 0.7 inches", + "weight": "0.6 pounds", + "pages": "304 " +}, +"254762323": { + "books_id": "254762323", + "title": "The Ordination of Women as Rabbis: Studies and Responsa (Moreshet)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Greenberg, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Simon", + "fl": "Simon Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873340426", + "isbn": { + "0": "0873340426", + "2": "9780873340427" + }, + "asin": "0873340426", + "ean": ["0873340426"], + "publication": "JTS Press (1988), 236 pages", + "date": "1988", + "summary": "The Ordination of Women as Rabbis: Studies and Responsa (Moreshet) by Simon Greenberg (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.61"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Rabbis", + "Religion"] + }, + "lcc": { + "code": "BM197 .O73" + }, + "subject": { + "0": ["Conservative Judaism", + "Doctrines"], + "2": ["Ordination of women", + "Conservative Judaism"], + "4": ["Women in Judaism"] + }, + "source": "amazon.com books", + "workcode": "2393479", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "236 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.70988848364 pounds", + "pages": "236 " +}, +"254762352": { + "books_id": "254762352", + "title": "A Classification System for Libraries of Judaica", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Elazar, David H.", + "primaryauthorrole": "Author", + "secondaryauthor": "Elazar, Daniel J.|Glasser, Rachel K.|Frischer, Rita B.", + "secondaryauthorroles": "Author|Author|Author", + "authors": [{ + "lf": "Elazar, David H.", + "fl": "David H. Elazar", + "role": "Author" + }, + { + "lf": "Elazar, Daniel J.", + "fl": "Daniel J. Elazar", + "role": "Author" + }, + { + "lf": "Glasser, Rachel K.", + "fl": "Rachel K. Glasser", + "role": "Author" + }, + { + "lf": "Frischer, Rita B.", + "fl": "Rita B. Frischer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0765759837", + "isbn": { + "0": "0765759837", + "2": "9780765759832" + }, + "asin": "0765759837", + "ean": ["0765759837"], + "publication": "Jason Aronson, Inc. (1997), Edition: 3rd, 250 pages", + "date": "1997", + "summary": "A Classification System for Libraries of Judaica by David H. Elazar (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["025.4"], + "wording": ["Computer science, information & general works", + "Library & information sciences", + "Operations of libraries and archives", + "Subject analysis and control"] + }, + "lcc": { + "code": "Z697.J53 E42" + }, + "subject": [["Classification", + "Books", + "Jews"], + ["Classification", + "Books", + "Judaism"], + ["Jews", + "Bibliography", + "Methodology"], + ["Judaism", + "Bibliography", + "Methodology"]], + "source": "amazon.com books", + "workcode": "1200635", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "250 p.; 8.82 inches", + "height": "8.82 inches", + "thickness": "1 inch", + "length": "5.86 inches", + "dimensions": "8.82 x 5.86 x 1 inches", + "weight": "0.98987555638 pounds", + "pages": "250 " +}, +"254762367": { + "books_id": "254762367", + "title": "Tree Of Life, Tree Of Knowledge: Conversations With The Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosenak, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosenak, Michael", + "fl": "Michael Rosenak", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813341590", + "isbn": { + "0": "0813341590", + "2": "9780813341590" + }, + "asin": "0813341590", + "ean": ["0813341590"], + "publication": "Westview Press (2003), 400 pages", + "date": "2003", + "summary": "Tree Of Life, Tree Of Knowledge: Conversations With The Torah by Michael Rosenak (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.68"], + "wording": ["Jewish Education", + "Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM103 .R635" + }, + "subject": [["Bible. O.T. Pentateuch", + "Criticism, interpretation, etc"], + ["Jewish religious education", + "Philosophy"], + ["Judaism", + "Study and teaching"]], + "series": ["Radical Traditions"], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1770816", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "400 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 1 inches", + "weight": "1.2 pounds", + "pages": "400 " +}, +"254762384": { + "books_id": "254762384", + "title": "At the Threshold: Jewish Meditations on Death", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Swirsky, Michael", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Swirsky, Michael", + "fl": "Michael Swirsky", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568212992", + "isbn": { + "0": "1568212992", + "2": "9781568212999" + }, + "asin": "1568212992", + "ean": ["1568212992"], + "publication": "Jason Aronson, Inc. (1996), Edition: F First Edition, 165 pages", + "date": "1996", + "summary": "At the Threshold: Jewish Meditations on Death by Michael Swirsky (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM724 .A73" + }, + "source": "amazon.com books", + "workcode": "5535728", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "165 p.; 8.44 x 5.8 inches", + "height": "5.8 inches", + "thickness": "0.69 inches", + "length": "8.44 inches", + "dimensions": "5.8 x 8.44 x 0.69 inches", + "weight": "0.82011961464 pounds", + "pages": "165 " +}, +"254762417": { + "books_id": "254762417", + "title": "Conflicting Visions: Spiritual Possibilities of Modern Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hartman, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hartman, David", + "fl": "David Hartman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805240608", + "isbn": { + "0": "0805240608", + "2": "9780805240603" + }, + "asin": "0805240608", + "ean": ["0805240608"], + "publication": "Schocken (1990), Edition: First Edition, 292 pages", + "date": "1990", + "summary": "Conflicting Visions: Spiritual Possibilities of Modern Israel by David Hartman (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .H27" + }, + "subject": [["Israel", + "Religion", + "20th century"], + ["Judaism"], + ["Judaism", + "Essence, genius, nature"], + ["Judaism", + "Israel"], + ["Religion and state", + "Israel"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "2191148", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "292 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "1.25 inches", + "length": "6.75 inches", + "dimensions": "9.75 x 6.75 x 1.25 inches", + "weight": "1.3 pounds", + "pages": "292 " +}, +"254762437": { + "books_id": "254762437", + "title": "Maimonidean Criticism and the Maimonidean Controversy 1180-1240", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Daniel Jeremy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silver, Daniel Jeremy", + "fl": "Daniel Jeremy Silver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002IT9HBE", + "publication": "E.J.Brill (1965), Edition: First Edition, 219 pages", + "date": "1965", + "summary": "Maimonidean Criticism and the Maimonidean Controversy 1180-1240 by Daniel Jeremy Silver (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "B759.M34 S55" + }, + "source": "amazon.com books", + "workcode": "28121168", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"254762512": { + "books_id": "254762512", + "title": "The Unity of the Hebrew Bible (The Distinguished Senior Faculty Lecture Series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Freedman, David Noel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Freedman, David Noel", + "fl": "David Noel Freedman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0472102451", + "isbn": { + "0": "0472102451", + "2": "9780472102457" + }, + "asin": "0472102451", + "ean": ["0472102451"], + "publication": "University of Michigan Press/ (1991), Edition: First Edition, 125 pages", + "date": "1991", + "summary": "The Unity of the Hebrew Bible (The Distinguished Senior Faculty Lecture Series) by David Noel Freedman (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1170 .F74" + }, + "subject": [["Bible. O.T.", + "History"]], + "source": "amazon.com books", + "workcode": "1678337", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "125 p.", + "weight": "0.8928721611 pounds", + "pages": "125 " +}, +"254762558": { + "books_id": "254762558", + "title": "Lost Love: The Untold Story of Henrietta Szold : Unpublished Diary and Letters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Szold, Henrietta", + "primaryauthorrole": "Author", + "secondaryauthor": "Ginzberg, Louis|Shargel, Baila Round", + "secondaryauthorroles": "Author|Author", + "authors": [{ + "lf": "Szold, Henrietta", + "fl": "Henrietta Szold", + "role": "Author" + }, + { + "lf": "Ginzberg, Louis", + "fl": "Louis Ginzberg", + "role": "Author" + }, + { + "lf": "Shargel, Baila Round", + "fl": "Baila Round Shargel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760629X", + "isbn": { + "0": "082760629X", + "2": "9780827606296" + }, + "asin": "082760629X", + "ean": ["082760629X"], + "publication": "University of Nebraska Press (1997), 382 pages", + "date": "1997", + "summary": "Lost Love: The Untold Story of Henrietta Szold : Unpublished Diary and Letters by Henrietta Szold (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.004924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "United States", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 S9613" + }, + "subject": [["Ginzberg, Louis, 1873-1953", + "Correspondence"], + ["Jewish scholars", + "United States", + "Correspondence"], + ["Jewish women", + "United States", + "Correspondence"], + ["Szold, Henrietta, 1860-1945", + "Correspondence"], + ["Szold, Henrietta, 1860-1945", + "Diaries"], + ["Unrequited love"]], + "source": "amazon.com books", + "workcode": "1119854", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "382 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.75 x 6.25 x 1.25 inches", + "weight": "1.75 pounds", + "pages": "382 " +}, +"254762713": { + "books_id": "254762713", + "title": "The Oxford Book of Hebrew Short Stories", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Abramson, Glenda", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Abramson, Glenda", + "fl": "Glenda Abramson", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0192142062", + "isbn": { + "0": "0192142062", + "2": "9780192142061" + }, + "asin": "0192142062", + "ean": ["0192142062"], + "publication": "Oxford University Press (1996), Edition: First Edition, 424 pages", + "date": "1996", + "summary": "The Oxford Book of Hebrew Short Stories by Glenda Abramson (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5059.E8 O96" + }, + "source": "amazon.com books", + "workcode": "29494", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "424 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "5.75 inches", + "dimensions": "9.25 x 5.75 x 1.25 inches", + "weight": "1.4 pounds", + "pages": "424 " +}, +"254762749": { + "books_id": "254762749", + "title": "The Long Shorter Way: Discourses on Chasidic Thought", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Rabbi Adin Even-Israel", + "primaryauthorrole": "Author", + "secondaryauthor": "Hanegbi, Yehuda", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Steinsaltz, Rabbi Adin Even-Israel", + "fl": "Rabbi Adin Even-Israel Steinsaltz", + "role": "Author" + }, + { + "lf": "Hanegbi, Yehuda", + "fl": "Yehuda Hanegbi", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643159", + "isbn": { + "0": "1592643159", + "2": "9781592643158" + }, + "asin": "1592643159", + "ean": ["1592643159"], + "publication": "Maggid (2014), 360 pages", + "date": "2014", + "summary": "The Long Shorter Way: Discourses on Chasidic Thought by Rabbi Adin Even-Israel Steinsaltz (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.S483 S74" + }, + "subject": [["Hasidism"], + ["Shneur Zalman, of Lyady, 1745-1813. Li?ku?te amarim"]], + "source": "amazon.com books", + "workcode": "1008683", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "360 p.; 8.8 inches", + "height": "8.8 inches", + "thickness": "1.25 inches", + "length": "5.91 inches", + "dimensions": "8.8 x 5.91 x 1.25 inches", + "weight": "1.39 pounds", + "pages": "360 " +}, +"254762764": { + "books_id": "254762764", + "title": "The Disappearance of God: A Divine Mystery", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Friedman, Richard Elliott", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friedman, Richard Elliott", + "fl": "Richard Elliott Friedman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316294349", + "isbn": { + "0": "0316294349", + "2": "9780316294348" + }, + "asin": "B00JMEQFWC", + "publication": "(2014), 357 pages", + "date": "2014", + "summary": "The Disappearance of God: A Divine Mystery by Richard Elliott Friedman (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["231"], + "wording": ["Christianity", + "God", + "Religion"] + }, + "lcc": { + "code": "BS1192 .F75" + }, + "subject": { + "0": ["Bible. O.T.", + "Theology"], + "1": ["Big bang theory"], + "3": ["Cabala"], + "5": ["Creation"], + "7": ["Hidden God", + "Biblical teaching"], + "9": ["Nietzsche, Friedrich Wilhelm, 1844-1900", + "Religion"] + }, + "source": "amazon.com books", + "workcode": "662837", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1", + "height": "6.38 inches", + "thickness": "1.13 inches", + "length": "9.5 inches", + "dimensions": "6.38 x 9.5 x 1.13 inches", + "weight": "1.33 pounds", + "pages": "352 " +}, +"254762816": { + "books_id": "254762816", + "title": "In the footsteps of Moses", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pearlman, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pearlman, Moshe", + "fl": "Moshe Pearlman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0304294071", + "isbn": { + "0": "0304294071", + "2": "9780304294077" + }, + "asin": "0304294071", + "ean": ["0304294071"], + "publication": "Cassell (1974), Edition: First Edition, 230 pages", + "date": "1974", + "summary": "In the footsteps of Moses by Moshe Pearlman (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.12"], + "wording": ["Exodus", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "DS121 .P42" + }, + "subject": { + "0": ["Jews", + "History"], + "1": ["Jews", + "History", + "To 953 B.C"], + "2": ["Jews", + "history"], + "3": ["Middle East", + "Pictorial works"], + "5": ["Moses (Biblical leader)"] + }, + "source": "amazon.com books", + "workcode": "1392582", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "230 p.; 11 x 0.75 inches", + "height": "0.75 inches", + "thickness": "9 inches", + "length": "11 inches", + "dimensions": "0.75 x 11 x 9 inches", + "weight": "3.35 pounds", + "pages": "230 " +}, +"254762847": { + "books_id": "254762847", + "title": "Pictorial History of the Jewish People", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ausubel, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ausubel, Nathan", + "fl": "Nathan Ausubel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517552833", + "isbn": { + "0": "0517552833", + "2": "9780517552834" + }, + "asin": "0517552833", + "ean": ["0517552833"], + "publication": "Crown (1984), Edition: Revised, Subsequent, 456 pages", + "date": "1984", + "summary": "Pictorial History of the Jewish People by Nathan Ausubel (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS118.A8" + }, + "subject": [["Jews", + "History", + "Pictorial works"], + ["Jews", + "Pictorial works"]], + "source": "amazon.com books", + "workcode": "239694", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "456 p.; 11.1 x 1.5 inches", + "height": "1.5 inches", + "thickness": "8.9 inches", + "length": "11.1 inches", + "dimensions": "1.5 x 11.1 x 8.9 inches", + "weight": "1.01 pounds", + "pages": "456 " +}, +"254762896": { + "books_id": "254762896", + "title": "Jerusalem: Past and Present", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Borodulin, L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Borodulin, L.", + "fl": "L. Borodulin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652800783", + "isbn": { + "0": "9652800783", + "2": "9789652800787" + }, + "asin": "9652800783", + "ean": ["9652800783"], + "publication": "Palphot (2007), 72 pages", + "date": "2007", + "summary": "Jerusalem: Past and Present by L. Borodulin (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220"], + "wording": ["Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "B3398" + }, + "source": "amazon.com books", + "workcode": "5081380", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "72 p.; 10.25 inches", + "height": "10.25 inches", + "thickness": "0.25 inches", + "length": "8 inches", + "dimensions": "10.25 x 8 x 0.25 inches", + "weight": "0.7 pounds", + "pages": "72 " +}, +"254762914": { + "books_id": "254762914", + "title": "Jerusalem Past & Present", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Naftali (editor) Arbel", + "primaryauthorrole": "Author", + "secondaryauthor": "Photos and Drawings", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Naftali (editor) Arbel", + "fl": "Naftali (editor) Arbel", + "role": "Author" + }, + { + "lf": "Photos and Drawings", + "fl": "Photos and Drawings", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JWBKXU", + "publication": "S. Friedman Publishing (1969), Edition: First Edition", + "date": "1969", + "summary": "Jerusalem Past & Present by Naftali (editor) Arbel (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS109.J42" + }, + "source": "amazon.com books", + "workcode": "7889337", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"254762981": { + "books_id": "254762981", + "title": "Picture history of Jewish civilization", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Narkiss, Bezalel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Narkiss, Bezalel", + "fl": "Bezalel Narkiss", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0810904004", + "isbn": { + "0": "0810904004", + "2": "9780810904002" + }, + "asin": "0810904004", + "ean": ["0810904004"], + "publication": "H. N. Abrams (1970), Edition: First Edition, 248 pages", + "date": "1970", + "summary": "Picture history of Jewish civilization by Bezalel Narkiss (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS118.P53" + }, + "subject": { + "0": ["Jewish art and symbolism"], + "2": ["Jews", + "History"], + "4": ["Jews", + "history"], + "6": ["Painting, Jewish"] + }, + "source": "amazon.com books", + "workcode": "1355718", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "248 p.", + "weight": "1 pound", + "pages": "248 " +}, +"254763110": { + "books_id": "254763110", + "title": "Yaacov Agam", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Metken, Günter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Metken, Günter", + "fl": "Günter Metken", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0500270988", + "isbn": { + "0": "0500270988", + "2": "9780500270981" + }, + "asin": "0500270988", + "ean": ["0500270988"], + "publication": "Thames & Hudson (1977), Edition: New Ed, 80 pages", + "date": "1977", + "summary": "Yaacov Agam by Günter Metken (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["709.2"], + "wording": ["Arts", + "Arts & recreation", + "Biography (artists not limited to a specific form)", + "History, geographic treatment, biography"] + }, + "lcc": { + "code": "N7279.A4 M47" + }, + "series": ["Modern Artists"], + "genre": ["Nonfiction", + "Art & Design", + "Music"], + "genre_id": ["20275895", + "9985304", + "15028"], + "source": "amazon.com books", + "workcode": "129051", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"254763138": { + "books_id": "254763138", + "title": "For the Love of Being Jewish: An A-to-Z Primer for Bubbies, Mensches, Meshugas, Tzaddiks, and Yentas!", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stark Lowenstein, Rabbi Steven", + "primaryauthorrole": "Author", + "secondaryauthor": "Anderson, Mark", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Stark Lowenstein, Rabbi Steven", + "fl": "Rabbi Steven Stark Lowenstein", + "role": "Author" + }, + { + "lf": "Anderson, Mark", + "fl": "Mark Anderson", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1600784038", + "isbn": { + "0": "1600784038", + "2": "9781600784033" + }, + "asin": "1600784038", + "ean": ["1600784038"], + "publication": "Triumph Books (2010), Edition: 1st, No Additional Printings, 48 pages", + "date": "2010", + "summary": "For the Love of Being Jewish: An A-to-Z Primer for Bubbies, Mensches, Meshugas, Tzaddiks, and Yentas! by Rabbi Steven Stark Lowenstein (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM573 .L69" + }, + "source": "amazon.com books", + "workcode": "10413395", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "48 p.; 11 inches", + "height": "11 inches", + "thickness": "0.5 inches", + "length": "11 inches", + "dimensions": "11 x 11 x 0.5 inches", + "weight": "1.47930177802 pounds", + "pages": "48 " +}, +"254763182": { + "books_id": "254763182", + "title": "The Book of Job: A New Translation According to the Traditional Hebrew Text (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Greenberg, Moshe Intro", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Moshe Intro", + "fl": "Moshe Intro Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827601727", + "isbn": { + "0": "0827601727", + "2": "9780827601727" + }, + "asin": "0827601727", + "ean": ["0827601727"], + "publication": "Jewish Pubn Society (1980), Edition: First Edition, 63 pages", + "date": "1980", + "summary": "The Book of Job: A New Translation According to the Traditional Hebrew Text (English and Hebrew Edition) by Moshe Intro Greenberg (1980)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["223.1044"], + "wording": ["Job", + "Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS14121980" + }, + "source": "amazon.com books", + "workcode": "2709997", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "63 p.", + "height": "9.2 inches", + "thickness": "0.6 inches", + "length": "7.6 inches", + "dimensions": "9.2 x 7.6 x 0.6 inches", + "weight": "1.27 pounds", + "pages": "63 " +}, +"254763213": { + "books_id": "254763213", + "title": "Mimekor Yisrael: Classical Jewish folktales", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berdichevsky, Micah Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berdichevsky, Micah Joseph", + "fl": "Micah Joseph Berdichevsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0253153301", + "isbn": { + "0": "0253153301", + "2": "9780253153302" + }, + "asin": "0253153301", + "ean": ["0253153301"], + "publication": "Indiana University Press (1976), Edition: First Edition, 1553 pages", + "date": "1976", + "summary": "Mimekor Yisrael: Classical Jewish folktales by Micah Joseph Berdichevsky (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.2"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences"] + }, + "lcc": { + "code": "BM530 .B3682513" + }, + "subject": { + "0": ["Aggada", + "Translations into English"], + "2": ["Jewish folk literature"], + "4": ["Legends, Jewish"], + "6": ["Tales, Jewish"] + }, + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "1107479", + "entrydate": "2023-12-26", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "1553 p.", + "weight": "1.1 pounds", + "pages": "1553 " +}, +"256210226": { + "books_id": "256210226", + "title": "MY LIFE", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Meir, Golda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meir, Golda", + "fl": "Golda Meir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1399603531", + "isbn": { + "0": "1399603531", + "2": "9781399603539" + }, + "asin": "1399603531", + "ean": ["1399603531"], + "publication": "Weidenfeld and Nicolson (2023), 477 pages", + "date": "2023", + "summary": "MY LIFE by Golda Meir (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405092"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.M42 A37" + }, + "source": "amazon.com books", + "workcode": "29814224", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "477 p.; 7.72 inches", + "height": "7.71652 inches", + "thickness": "1.25984 inches", + "length": "4.96062 inches", + "dimensions": "7.71652 x 4.96062 x 1.25984 inches", + "weight": "0.7936641432 pounds", + "pages": "477 " +}, +"256210406": { + "books_id": "256210406", + "title": "Brand Plucked from the Fire", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jessie Sampter.", + "primaryauthorrole": "Author", + "secondaryauthor": "Maxim B. Gottlieb", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Jessie Sampter.", + "fl": "Jessie Sampter.", + "role": "Author" + }, + { + "lf": "Maxim B. Gottlieb", + "fl": "Maxim B. Gottlieb", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000EERJP", + "publication": "Philadelphia: Jewish Publ. Society of America (1937), Edition: 1st, 211 pages", + "date": "1937", + "summary": "Brand Plucked from the Fire by Jessie Sampter. (1937)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["811.5"], + "wording": ["20th Century", + "American literature in English", + "American poetry in English", + "Literature"] + }, + "lcc": { + "code": "PS3537.A567 B7" + }, + "source": "amazon.com books", + "workcode": "7746593", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "211 p.", + "weight": "1.74 pounds", + "pages": "211 " +}, +"256210424": { + "books_id": "256210424", + "title": "Banner of Jerusalem: The Life, Times and Thought of Abraham Isaac Kuk, the Late Chief Rabbi of Palestine", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Agus, Jacob B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agus, Jacob B.", + "fl": "Jacob B. Agus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NZAFW0", + "publication": "Bloch Publishing Co, (1946), Edition: First Edition", + "date": "1946", + "summary": "Banner of Jerusalem: The Life, Times and Thought of Abraham Isaac Kuk, the Late Chief Rabbi of Palestine by Jacob B. Agus (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM755.K66 A5" + }, + "source": "amazon.com books", + "workcode": "20121401", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256210459": { + "books_id": "256210459", + "title": "White Fire: The Life and Works of Jessie Sampter", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Badt-Strauss, Bertha", + "primaryauthorrole": "Author", + "secondaryauthor": "Kohn, Eugene", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Badt-Strauss, Bertha", + "fl": "Bertha Badt-Strauss", + "role": "Author" + }, + { + "lf": "Kohn, Eugene", + "fl": "Eugene Kohn", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1258171821", + "isbn": { + "0": "1258171821", + "2": "9781258171827" + }, + "asin": "1258171821", + "ean": ["1258171821"], + "publication": "Literary Licensing, LLC (2011), 218 pages", + "date": "2011", + "summary": "White Fire: The Life and Works of Jessie Sampter by Bertha Badt-Strauss (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["811.5"], + "wording": ["20th Century", + "American literature in English", + "American poetry in English", + "Literature"] + }, + "lcc": { + "code": "PS3537.A567 Z9" + }, + "source": "amazon.com books", + "workcode": "5861578", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "218 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.46 inches", + "length": "5.98 inches", + "dimensions": "9.02 x 5.98 x 0.46 inches", + "weight": "0.66 pounds", + "pages": "218 " +}, +"256210791": { + "books_id": "256210791", + "title": "The Rishonim: Biographical sketches of the prominent early sages and leaders (ArtScroll Judaiscope series) (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldwurm, Rabbi Hersh", + "primaryauthorrole": "Author", + "secondaryauthor": "Teich, Shmuel", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Goldwurm, Rabbi Hersh", + "fl": "Rabbi Hersh Goldwurm", + "role": "Author" + }, + { + "lf": "Teich, Shmuel", + "fl": "Shmuel Teich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899064523", + "isbn": { + "0": "0899064523", + "2": "9780899064529" + }, + "asin": "0899064523", + "ean": ["0899064523"], + "publication": "ArtScroll, Mesorah Publications Ltd (1986), Edition: First Edition, 227 pages", + "date": "1986", + "summary": "The Rishonim: Biographical sketches of the prominent early sages and leaders (ArtScroll Judaiscope series) (English and Hebrew Edition) by Rabbi Hersh Goldwurm (1986)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM750 .T44" + }, + "source": "amazon.com books", + "workcode": "5441756", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "227 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.04940036712 pounds", + "pages": "227 " +}, +"256210847": { + "books_id": "256210847", + "title": "Essays on Hebrew Literature In Honor of Avraham Holtz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zvia Ben-Yosef Ginor (Editor)", + "primaryauthorrole": "Author", + "secondaryauthor": "Ben-Yosef Ginor, Zvia", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Zvia Ben-Yosef Ginor (Editor)", + "fl": "Zvia Ben-Yosef Ginor (Editor)", + "role": "Author" + }, + { + "lf": "Ben-Yosef Ginor, Zvia", + "fl": "Zvia Ben-Yosef Ginor", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873340922", + "isbn": { + "0": "0873340922", + "2": "9780873340922" + }, + "asin": "0873340922", + "ean": ["0873340922"], + "publication": "JTS Press (The Jewish Theological Seminary) (2003), Edition: English/Hebrew, 389 pages", + "date": "2003", + "summary": "Essays on Hebrew Literature In Honor of Avraham Holtz by Zvia Ben-Yosef Ginor (Editor) (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "A5741" + }, + "source": "amazon.com books", + "workcode": "26004711", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256210879": { + "books_id": "256210879", + "title": "Escape into Siege: Survey of Israeli Literature Today", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yudkin, Leon I.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yudkin, Leon I.", + "fl": "Leon I. Yudkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0197100163", + "isbn": { + "0": "0197100163", + "2": "9780197100165" + }, + "asin": "0197100163", + "ean": ["0197100163"], + "publication": "The Littman Library of Jewish Civilization in association with Liverpool University Press (1974), 208 pages", + "date": "1974", + "summary": "Escape into Siege: Survey of Israeli Literature Today by Leon I. Yudkin (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.409"], + "wording": ["Afro-Asiatic literatures", + "Hebrew literature", + "History and criticism of Hebrew literature", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5021.Y93" + }, + "subject": [["Israeli literature", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "6099185", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "208 p.; 8.81 inches", + "height": "8.81 inches", + "thickness": "0.81 inches", + "length": "5.69 inches", + "dimensions": "8.81 x 5.69 x 0.81 inches", + "weight": "0.9590108397 pounds", + "pages": "208 " +}, +"256210925": { + "books_id": "256210925", + "title": "Hasidic Tales of the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eliach, Yaffa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eliach, Yaffa", + "fl": "Yaffa Eliach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195031997", + "isbn": { + "0": "0195031997", + "2": "9780195031997" + }, + "asin": "0195031997", + "ean": ["0195031997"], + "publication": "Oxford University Press (1982), Edition: 1, 298 pages", + "date": "1982", + "summary": "Hasidic Tales of the Holocaust by Yaffa Eliach (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .H37" + }, + "subject": { + "0": ["Hasidim", + "Biography"], + "2": ["Hasidim", + "Legends"], + "4": ["Holocaust, Jewish (1939-1945)", + "Personal narratives"] + }, + "source": "amazon.com books", + "workcode": "249363", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "298 p.; 8.68 x 1.05 inches", + "height": "1.05 inches", + "thickness": "5.88 inches", + "length": "8.68 inches", + "dimensions": "1.05 x 8.68 x 5.88 inches", + "weight": "1.03837725402 pounds", + "pages": "298 " +}, +"256210933": { + "books_id": "256210933", + "title": "The Iron Pillar - Mishnah: Redaction, Form, and Intent", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zlotnick, Dov", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zlotnick, Dov", + "fl": "Dov Zlotnick", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0035UY0M6", + "publication": "KTAV Publishing House (1988), Edition: First American Edition", + "date": "1988", + "summary": "The Iron Pillar - Mishnah: Redaction, Form, and Intent by Dov Zlotnick (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497 .Z58" + }, + "source": "amazon.com books", + "workcode": "2394779", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256211021": { + "books_id": "256211021", + "title": "The Students' Guide Through the Talmud", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Chajes, \u1e92evi Hirsch", + "primaryauthorrole": "Author", + "secondaryauthor": "Shachter, Jacob", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Chajes, \u1e92evi Hirsch", + "fl": "\u1e92evi Hirsch Chajes", + "role": "Author" + }, + { + "lf": "Shachter, Jacob", + "fl": "Jacob Shachter", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1933143053", + "isbn": { + "0": "1933143053", + "2": "9781933143057" + }, + "asin": "1933143053", + "ean": ["1933143053"], + "publication": "Yashar Books (2009), Edition: 2, 290 pages", + "date": "2009", + "summary": "The Students' Guide Through the Talmud by \u1e92evi Hirsch Chajes (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504.C48" + }, + "subject": [["Aggada"], + ["Tradition (Judaism)"]], + "source": "amazon.com books", + "workcode": "9864", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "290 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.25 inches", + "weight": "1.5 pounds", + "pages": "290 " +}, +"256211081": { + "books_id": "256211081", + "title": "HOREB: A PHILOSOPHY OF JEWISH LAWS AND OBSERVANCES (IN TWO VOLUMES) .", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hirsch, Samson Raphael.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hirsch, Samson Raphael.", + "fl": "Samson Raphael. Hirsch", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NSGKQ2", + "publication": "London: The Soncino Press (1962), Edition: 3rd", + "date": "1962", + "summary": "HOREB: A PHILOSOPHY OF JEWISH LAWS AND OBSERVANCES (IN TWO VOLUMES) . by Samson Raphael. Hirsch (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["210"], + "wording": ["Philosophy & theory of religion", + "Philosophy and theory of religion", + "Religion"] + }, + "lcc": { + "code": "BM560.H483" + }, + "source": "amazon.com books", + "workcode": "1002717", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.75 pounds" +}, +"256211127": { + "books_id": "256211127", + "title": "Maimonides' Introduction to the Talmud", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Maimonides, Moses) Lampel, Zvi Trans", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Maimonides, Moses) Lampel, Zvi Trans", + "fl": "Moses) Lampel Maimonides, Zvi Trans", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1880582287", + "isbn": { + "0": "1880582287", + "2": "9781880582282" + }, + "asin": "0910818711", + "ean": ["0910818711"], + "publication": "Judaica Press (1987), Edition: First Edition, Thus", + "date": "1987", + "summary": "Maimonides' Introduction to the Talmud by Moses) Lampel Maimonides, Zvi Trans (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Arabic"], + "originallanguage_codeA": ["eng", + "ara"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM529 .M672" + }, + "subject": [["Mishnah", + "Introductions"], + ["Talmud", + "Introductions"], + ["Tradition (Judaism)"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "995087", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.9 pounds" +}, +"256211140": { + "books_id": "256211140", + "title": "A People Apart: The Jews in Europe, 1789-1939 (Oxford History of Modern Europe)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Vital, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vital, David", + "fl": "David Vital", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0198219806", + "isbn": { + "0": "0198219806", + "2": "9780198219804" + }, + "asin": "0198219806", + "ean": ["0198219806"], + "publication": "Oxford University Press (1999), Edition: First Edition, 968 pages", + "date": "1999", + "summary": "A People Apart: The Jews in Europe, 1789-1939 (Oxford History of Modern Europe) by David Vital (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.04924"], + "wording": ["Ethnic and national groups", + "History & geography", + "History of Europe", + "History of Europe", + "Standard subdivisions"] + }, + "lcc": { + "code": "DS135.E83 V58" + }, + "subject": { + "0": ["Antisemitism", + "Europe", + "History"], + "2": ["Europe", + "Ethnic relations"], + "4": ["Holocaust, Jewish (1939-1945)", + "Causes"], + "6": ["Jews", + "Europe", + "History"], + "8": ["Jews", + "Europe", + "Politics and government"], + "10": ["Jews", + "History"], + "11": ["Jews", + "History", + "1789-1945"], + "12": ["Jews", + "history"] + }, + "awards": ["Wingate Literary Prize"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "411105", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "968 p.; 9 inches", + "height": "9 inches", + "thickness": "1.75 inches", + "length": "5.75 inches", + "dimensions": "9 x 5.75 x 1.75 inches", + "weight": "2.55 pounds", + "pages": "968 " +}, +"256211199": { + "books_id": "256211199", + "title": "Shoah - An Oral History Of The Holocaust - The Complete Text of the Film", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lanzmann, Claude", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lanzmann, Claude", + "fl": "Claude Lanzmann", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000K1KF7C", + "publication": "Pantheon (1985), Edition: First Paperback Edition", + "date": "1985", + "summary": "Shoah - An Oral History Of The Holocaust - The Complete Text of the Film by Claude Lanzmann (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 L275513" + }, + "subject": { + "0": ["Culture in motion pictures"], + "1": ["Documentaries and factual works"], + "2": ["Documentary films"], + "3": ["Features"], + "4": ["Holocaust, Jewish (1939-1945)", + "Personal narratives"], + "6": ["Jews", + "Persecutions", + "Poland"], + "7": ["Jews", + "Poland.", + "Persecutions"], + "8": ["Oral history"], + "10": ["Poland", + "Ethnic relations"] + }, + "awards": ["Prix Henri Hertz"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "239730", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"256211265": { + "books_id": "256211265", + "title": "Barukh Kurzweil and Modern Hebrew Literature", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Diamond, James S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Diamond, James S.", + "fl": "James S. Diamond", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891305955", + "isbn": { + "0": "0891305955", + "2": "9780891305958" + }, + "asin": "0891305955", + "ean": ["0891305955"], + "publication": "Scholars Pr (1983), 232 pages", + "date": "1983", + "summary": "Barukh Kurzweil and Modern Hebrew Literature by James S. Diamond (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5007.K87 D5" + }, + "source": "amazon.com books", + "workcode": "12294518", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "232 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "8.75 x 6 x 0.75 inches", + "weight": "0.7 pounds", + "pages": "232 " +}, +"256211289": { + "books_id": "256211289", + "title": "Marriage: Duet or Duel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mandelbaum, Sylvia", + "primaryauthorrole": "Author", + "secondaryauthor": "Mandel, Morris", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Mandelbaum, Sylvia", + "fl": "Sylvia Mandelbaum", + "role": "Author" + }, + { + "lf": "Mandel, Morris", + "fl": "Morris Mandel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "965229022X", + "isbn": { + "0": "965229022X", + "2": "9789652290229" + }, + "asin": "965229022X", + "ean": ["965229022X"], + "publication": "Gefen Books (1996), 270 pages", + "date": "1996", + "summary": "Marriage: Duet or Duel by Sylvia Mandelbaum (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.74"], + "wording": ["Jewish Living", + "Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM713.M35" + }, + "source": "amazon.com books", + "workcode": "1654190", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "270 p.", + "weight": "1.74 pounds", + "pages": "270 " +}, +"256211312": { + "books_id": "256211312", + "title": "Ever since Sinai;: A modern view of Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Petuchowski, Jakob Josef", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Petuchowski, Jakob Josef", + "fl": "Jakob Josef Petuchowski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BZI3M", + "publication": "Scribe Publications (1968), Edition: 2nd, 132 pages", + "date": "1968", + "summary": "Ever since Sinai;: A modern view of Torah by Jakob Josef Petuchowski (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561.P45" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "1172263", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "132 p.", + "weight": "0.35 pounds", + "pages": "132 " +}, +"256211366": { + "books_id": "256211366", + "title": "From a ruined garden: The memorial books of Polish Jewry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kugelmass, Jack And Boyarin, Jonathan, Eds.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kugelmass, Jack And Boyarin, Jonathan, Eds.", + "fl": "Jack And Boyarin Kugelmass, Jonathan, Eds.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805238670", + "isbn": { + "0": "0805238670", + "2": "9780805238679" + }, + "asin": "0805238670", + "ean": ["0805238670"], + "publication": "Schocken Books (1983), Edition: First Edition, 275 pages", + "date": "1983", + "summary": "From a ruined garden: The memorial books of Polish Jewry by Jack And Boyarin Kugelmass, Jonathan, Eds. (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["943.004924"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Jews", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS135.P6 F77" + }, + "subject": [["Constitutional history", + "Virginia"], + ["Holocaust, Jewish (1939-1945)", + "Poland"], + ["Jews", + "Poland", + "Social life and customs"], + ["Memorial books (Holocaust)"], + ["Poland", + "Ethnic relations"], + ["Virginia", + "Politics and government", + "1865-1950"]], + "source": "amazon.com books", + "workcode": "1592506", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "275 p.", + "weight": "1.34702442082 pounds", + "pages": "275 " +}, +"256211393": { + "books_id": "256211393", + "title": "Jewish nobles and geniuses in modern Hungary (East European monographs)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "McCagg, William O", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "McCagg, William O", + "fl": "William O McCagg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CCCLM", + "publication": "East European Quarterly; distributed by Columbia University Press, New York (1972), Edition: First Edition, 254 pages", + "date": "1972", + "summary": "Jewish nobles and geniuses in modern Hungary (East European monographs) by William O McCagg (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.H9 M38" + }, + "source": "amazon.com books", + "workcode": "10850982", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "254 p.", + "weight": "1.01 pounds", + "pages": "254 " +}, +"256211437": { + "books_id": "256211437", + "title": "MY LIFE", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Meir, Golda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meir, Golda", + "fl": "Golda Meir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1399603531", + "isbn": { + "0": "1399603531", + "2": "9781399603539" + }, + "asin": "1399603531", + "ean": ["1399603531"], + "publication": "Weidenfeld and Nicolson (2023), 477 pages", + "date": "2023", + "summary": "MY LIFE by Golda Meir (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405092"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.M42 A37" + }, + "source": "amazon.com books", + "workcode": "29814224", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "477 p.; 7.72 inches", + "height": "7.71652 inches", + "thickness": "1.25984 inches", + "length": "4.96062 inches", + "dimensions": "7.71652 x 4.96062 x 1.25984 inches", + "weight": "0.7936641432 pounds", + "pages": "477 " +}, +"256211451": { + "books_id": "256211451", + "title": "Way of valor: A biography of Golda Myerson", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Syrkin, Marie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Syrkin, Marie", + "fl": "Marie Syrkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DJWJ0", + "publication": "Sharon Books (1955), 309 pages", + "date": "1955", + "summary": "Way of valor: A biography of Golda Myerson by Marie Syrkin (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["923.25694"], + "wording": ["Asia", + "Biography & genealogy", + "Government", + "History & geography", + "People in social sciences"] + }, + "lcc": { + "code": "DS125.M9 S9" + }, + "source": "amazon.com books", + "workcode": "4654664", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "309 p.", + "weight": "3 pounds", + "pages": "309 " +}, +"256211471": { + "books_id": "256211471", + "title": "By Invitation Only: How We Built Gilt and Changed the Way Millions Shop", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Maybank, Alexis", + "primaryauthorrole": "Author", + "secondaryauthor": "Wilkis Wilson, Alexandra", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Maybank, Alexis", + "fl": "Alexis Maybank", + "role": "Author" + }, + { + "lf": "Wilkis Wilson, Alexandra", + "fl": "Alexandra Wilkis Wilson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781591844631", + "isbn": ["9781591844631", + "1591844630"], + "asin": "1591844630", + "ean": ["1591844630"], + "publication": "Portfolio (2012), Edition: First Edition, 288 pages", + "date": "2012", + "summary": "By Invitation Only: How We Built Gilt and Changed the Way Millions Shop by Alexis Maybank (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["381.14206573"], + "wording": ["Commerce (Trade)", + "Commerce, communications & transportation", + "Marketing channels", + "Social sciences"] + }, + "lcc": { + "code": "HD9999.L854 G556" + }, + "source": "amazon.com books", + "workcode": "12410013", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.05 pounds", + "pages": "288 " +}, +"256211498": { + "books_id": "256211498", + "title": "He kindled a light : a philosophy of Jewish education : from the speeches and writings of Shraga Arian (1929-1972)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Picker, Chaim", + "authors": [{ + "lf": "Picker, Chaim", + "fl": "Chaim Picker" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780838182000", + "isbn": ["9780838182000", + "0838182003"], + "publication": "[New York] : United Synagogue commission on Jewish education, c1976.", + "date": "1976", + "summary": "He kindled a light : a philosophy of Jewish education : from the speeches and writings of Shraga Arian (1929-1972) by Chaim Picker (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM103.H34 1976" + }, + "subject": [["Jewish Religious Education of Children United States"], + ["Jewish religious education Philosophy"], + ["Jewish religious education of children United States"], + ["Jews United States Education Philosophy"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "2009475201", + "workcode": "12181049", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xx, 142 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xx; 142 " +}, +"256211504": { + "books_id": "256211504", + "title": "HOREB: A PHILOSOPHY OF JEWISH LAWS AND OBSERVANCES (IN TWO VOLUMES) .", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hirsch, Samson Raphael.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hirsch, Samson Raphael.", + "fl": "Samson Raphael. Hirsch", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NSGKQ2", + "publication": "London: The Soncino Press (1962), Edition: 3rd", + "date": "1962", + "summary": "HOREB: A PHILOSOPHY OF JEWISH LAWS AND OBSERVANCES (IN TWO VOLUMES) . by Samson Raphael. Hirsch (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["210"], + "wording": ["Philosophy & theory of religion", + "Philosophy and theory of religion", + "Religion"] + }, + "lcc": { + "code": "BM560.H483" + }, + "source": "amazon.com books", + "workcode": "1002717", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.75 pounds" +},"256211510": { + "books_id": "256211510", + "title": "Moses and the original Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Abba Hillel", + "authors": [{ + "lf": "Silver, Abba Hillel", + "fl": "Abba Hillel Silver" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, MacMillan, 1961.", + "date": "1961", + "summary": "Moses and the original Torah by Abba Hillel Silver (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.106"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2.S5" + }, + "subject": [["Judaism History"], + ["Judaism history"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "61015163", + "workcode": "4533948", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "188 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "188 " +}, +"256211527": { + "books_id": "256211527", + "title": "Perspectives in Jewish learning", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Chicago, Spertus College of Judaica Press [etc.]", + "summary": "Perspectives in Jewish learning", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "II 0 aDS101 b.P49" + }, + "subject": [["Jews Study and teaching Periodicals"]], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "Yale University (New Haven, CT)", + "lccn": "65027991", + "workcode": "18778499", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1" +}, +"256211574": { + "books_id": "256211574", + "title": "A People Apart: Hasidism in America Hardcover", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Cohen, Arthur Allen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Arthur Allen", + "fl": "Arthur Allen Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0525177302", + "isbn": { + "0": "0525177302", + "2": "9780525177302" + }, + "asin": "B01FIXRXYO", + "ean": ["0525177302"], + "publication": "E.P. Dutton (1970), 193 pages", + "date": "1970", + "summary": "A People Apart: Hasidism in America Hardcover by Arthur Allen Cohen (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .G35" + }, + "subject": [["Hasidism", + "United States", + "Pictorial works"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3345473", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "193 p.", + "weight": "2.55 pounds", + "pages": "193 " +}, +"256211593": { + "books_id": "256211593", + "title": "Gemara chapters on damages : chap. v from tractate Gittin and chaps. III and VI from Bava Kamma : in lesson form with notes and questions", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Elizur-Epstein, B.", + "authors": [{ + "lf": "Elizur-Epstein, B.", + "fl": "B. Elizur-Epstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem : World Zionist Organisation, Department for Torah Education and Culture in the Diapora, 5741 1981.", + "date": "5741", + "summary": "Gemara chapters on damages : chap. v from tractate Gittin and chaps. III and VI from Bava Kamma : in lesson form with notes and questions by B. Elizur-Epstein (5741)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.86(07)", + "296.86"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "81 B 1989" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "17587638", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "392 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "392 " +}, +"256211654": { + "books_id": "256211654", + "title": "Development of the Talmudic sugya : relationship between Tannaitic and Amoraic sources", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hauptman, Judith", + "authors": [{ + "lf": "Hauptman, Judith", + "fl": "Judith Hauptman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819166596", + "isbn": { + "0": "0819166596", + "2": "9780819166593" + }, + "publication": "Lanham : University Press of America, c1988.", + "date": "1988", + "summary": "Development of the Talmudic sugya : relationship between Tannaitic and Amoraic sources by Judith Hauptman (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1/2066", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503.6.H38 1988" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Harvard OpenMetadata", + "lccn": "87023101", + "workcode": "12036019", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "243 p.; 24 cm", + "height": "24 cm", + "thickness": "0.8 inches", + "length": "6 inches", + "dimensions": "24 x 6 x 0.8 cm", + "weight": "1.1 pounds", + "pages": "243 " +}, +"256211665": { + "books_id": "256211665", + "title": "Learn Talmud: How to Use The Talmud", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abrams, Judith Z.", + "primaryauthorrole": "Author", + "secondaryauthor": "Steinsaltz, Adin", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Abrams, Judith Z.", + "fl": "Judith Z. Abrams", + "role": "Author" + }, + { + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568214634", + "isbn": { + "0": "1568214634", + "2": "9781568214634" + }, + "asin": "1568214634", + "ean": ["1568214634"], + "publication": "Jason Aronson, Inc. (1995), Edition: The Steinsaltz, 153 pages", + "date": "1995", + "summary": "Learn Talmud: How to Use The Talmud by Judith Z. Abrams (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM499 .E4" + }, + "subject": [["Talmud", + "Introductions"], + ["Talmud", + "Outlines, syllabi, etc"], + ["Talmud", + "Study and teaching"], + ["Talmud. English", + "Versions", + "Steinsaltz"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "106673", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "153 p.; 8.92 inches", + "height": "8.92 inches", + "thickness": "0.45 inches", + "length": "6.88 inches", + "dimensions": "8.92 x 6.88 x 0.45 inches", + "weight": "0.52029093832 pounds", + "pages": "153 " +}, +"256211722": { + "books_id": "256211722", + "title": "Tradition a journal of Orthodox Jewish thought", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Rabbinical Council of America.", + "summary": "Tradition a journal of Orthodox Jewish thought", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "X 5" + }, + "subject": [["Jewish law Periodicals"], + ["Orthodox Judaism Periodicals"]], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "Israel Union List", + "workcode": "11445998", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"256211737": { + "books_id": "256211737", + "title": "The Talmud for Beginners: Prayer (Volume 1)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Abrams, Judith Z.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrams, Judith Z.", + "fl": "Judith Z. Abrams", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568210221", + "isbn": { + "0": "1568210221", + "2": "9781568210223" + }, + "asin": "1568210221", + "ean": ["1568210221"], + "publication": "Jason Aronson, Inc. (1993), Edition: 2nd, 228 pages", + "date": "1993", + "summary": "The Talmud for Beginners: Prayer (Volume 1) by Judith Z. Abrams (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .A27" + }, + "series": ["The Talmud for Beginners"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1112676", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "228 p.; 8.94 inches", + "height": "8.94 inches", + "thickness": "0.69 inches", + "length": "6.52 inches", + "dimensions": "8.94 x 6.52 x 0.69 inches", + "weight": "0.72973008722 pounds", + "pages": "228 " +}, +"256211766": { + "books_id": "256211766", + "title": "How to be an extremely reform Jew", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bader, David M.", + "authors": [{ + "lf": "Bader, David M.", + "fl": "David M. Bader" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781495369162", + "isbn": ["9781495369162", + "1495369161"], + "publication": "New York, NY : Extremely Limited, 2014.", + "date": "2014", + "summary": "How to be an extremely reform Jew by David M. Bader (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.882089924"], + "wording": ["Anthologies of short prose (quotations, jokes, anecdotes, etc.)", + "Collections of literary texts from more than two literatures", + "Collections of miscellaneous writings", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.J5 B23" + }, + "genre": ["Fiction", + "Religion & Spirituality"], + "genre_id": ["17160326", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "2014934272", + "workcode": "42805", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1" +}, +"256211767": { + "books_id": "256211767", + "title": "The concise code of Jewish law : compiled from Kitzur Shulhan aruch and traditional sources. Vol. 1, A guide to prayer and religious observance in the daily life of the Jew", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ganzfried, Solomon ben Joseph", + "secondaryauthor": "Appel, Gersion", + "authors": [{ + "lf": "Ganzfried, Solomon ben Joseph", + "fl": "Solomon ben Joseph Ganzfried" + }, + { + "lf": "Appel, Gersion", + "fl": "Gersion Appel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870682989", + "isbn": { + "0": "0870682989", + "2": "9780870682988" + }, + "publication": "New York : KTAV Publishing House, Cop. 1977", + "date": "1977", + "summary": "The concise code of Jewish law : compiled from Kitzur Shulhan aruch and traditional sources. Vol. 1, A guide to prayer and religious observance in the daily life of the Jew by Solomon ben Joseph Ganzfried (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520.C66" + }, + "subject": [["Halaka"], + ["Judisk lag"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "LIBRIS - Kungliga biblioteket / Royal Library of Sweden (Stockholm, Stockholm)", + "workcode": "1608451", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "350 p.; 9.1 inches", + "height": "9.1 inches", + "thickness": "1.6 inches", + "length": "5.8 inches", + "dimensions": "9.1 x 5.8 x 1.6 inches", + "weight": "2.25 pounds", + "pages": "358 " +}, +"256211814": { + "books_id": "256211814", + "title": "Talmud for Beginners: Text, Vol. 2", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abrams, Judith Z.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrams, Judith Z.", + "fl": "Judith Z. Abrams", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685971", + "isbn": { + "0": "0876685971", + "2": "9780876685976" + }, + "asin": "0876685971", + "ean": ["0876685971"], + "publication": "Jason Aronson, Inc. (1977), Edition: First Edition, 190 pages", + "date": "1977", + "summary": "Talmud for Beginners: Text, Vol. 2 by Judith Z. Abrams (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503.5 A27" + }, + "series": ["The Talmud for Beginners"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "362441", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "190 p.; 8.94 inches", + "height": "8.94 inches", + "thickness": "0.57 inches", + "length": "6.74 inches", + "dimensions": "8.94 x 6.74 x 0.57 inches", + "weight": "0.61949895622 pounds", + "pages": "190 " +}, +"256211864": { + "books_id": "256211864", + "title": "The Essential Talmud", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465082734", + "isbn": { + "0": "0465082734", + "2": "9780465082735" + }, + "asin": "0465082734", + "ean": ["0465082734"], + "publication": "Basic Books (2006), Edition: 30th Anniversary edi, 336 pages", + "date": "2006", + "summary": "The Essential Talmud by Adin Steinsaltz (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .S79913" + }, + "subject": [["Talmud", + "Introductions"]], + "originaltitle": "ha-Talmud la-kol", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "29211", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8 x 5.25 inches", + "height": "5.25 inches", + "thickness": "1 inch", + "length": "8 inches", + "dimensions": "5.25 x 8 x 1 inches", + "weight": "0.64 pounds", + "pages": "336 " +}, +"256211913": { + "books_id": "256211913", + "title": "The Westminster historical atlas to the Bible", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, PA : The Westminster press, 1946.", + "date": "1946", + "summary": "The Westminster historical atlas to the Bible (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.92"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Persons", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "221.92 Wes [REFERENCE]" + }, + "subject": [["\u05ea\u05e0\"\u05da \u05d0\u05d8\u05dc\u05e1\u05d9\u05dd"]], + "genre": ["Nonfiction", + "Anthropology", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1599", + "1944"], + "source": "Israel Union List", + "workcode": "843338", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "114 p.; 40 cm", + "height": "40 cm", + "dimensions": "40 cm", + "pages": "114 " +}, +"256211941": { + "books_id": "256211941", + "title": "Gesher. Gesher", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[Tel-Aviv] Ma\u1e25. ha-hasbarah bi-khetav shel ha-Miflagah ha-datit ha-leʾumit Mizra\u1e25i-ha-Po\u02bbel ha-Mizra\u1e25i.", + "summary": "Gesher. Gesher", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "BM390.G43" + }, + "subject": [["Israel Emigration and immigration Periodicals"], + ["Judaism Israel Periodicals"]], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "Library of Congress (Washington, DC)", + "lccn": "he 68004616", + "workcode": "31536699", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "28 cm", + "height": "28 cm", + "dimensions": "28 cm" +}, +"256211987": { + "books_id": "256211987", + "title": "The Cycle of the Jewish Year", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Vainstein, Yaacov", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vainstein, Yaacov", + "fl": "Yaacov Vainstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JKVNNY", + "publication": "Publishing Department of the Jewish Agency (1980), Edition: Fifth Printing, 182 pages", + "date": "1980", + "summary": "The Cycle of the Jewish Year by Yaacov Vainstein (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM690 .V3" + }, + "subject": [["Fasts and feasts", + "Judaism"], + ["Jews. Liturgy and ritual"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2886696", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "182 p.", + "weight": "1.05 pounds", + "pages": "182 " +}, +"256211988": { + "books_id": "256211988", + "title": "The Jews in their land", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385061528", + "isbn": { + "0": "0385061528", + "2": "9780385061520" + }, + "publication": "Garden City, N.Y., Doubleday [1974]", + "date": "1974", + "summary": "The Jews in their land by David Ben-Gurion (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["915.694/06/924", + "915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS118.B4213 1974" + }, + "subject": [["Israel History"], + ["Israel history"], + ["Jews Palestine History"]], + "genre": ["Nonfiction", + "History", + "Travel"], + "genre_id": ["20275895", + "1599", + "3578"], + "source": "Oregon State University (Corvallis, OR)", + "lccn": "73010589 //", + "workcode": "239809", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "352 p.; 31 cm", + "height": "31 cm", + "thickness": "1.4 inches", + "length": "8.6 inches", + "dimensions": "31 x 8.6 x 1.4 cm", + "weight": "3.1 pounds", + "pages": "352 " +}, +"256212024": { + "books_id": "256212024", + "title": "Moses and the original Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Abba Hillel", + "authors": [{ + "lf": "Silver, Abba Hillel", + "fl": "Abba Hillel Silver" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, MacMillan, 1961.", + "date": "1961", + "summary": "Moses and the original Torah by Abba Hillel Silver (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.106"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2.S5" + }, + "subject": [["Judaism History"], + ["Judaism history"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "61015163", + "workcode": "4533948", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "188 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "188 " +}, +"256212025": { + "books_id": "256212025", + "title": "Tradition : Orthodox Jewish life in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Warshaw, Mal", + "authors": [{ + "lf": "Warshaw, Mal", + "fl": "Mal Warshaw" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805236376", + "isbn": { + "0": "0805236376", + "2": "9780805236378" + }, + "publication": "New York : Shocken Books, 1976.", + "date": "1976", + "summary": "Tradition : Orthodox Jewish life in America by Mal Warshaw (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["974.7/23/004924", + "974.7"], + "wording": ["History & geography", + "History of North America", + "New York", + "Northeastern United States (New England and Middle Atlantic states)"] + }, + "lcc": { + "code": "BM205.W26" + }, + "subject": [["Brooklyn (New York, N.Y.) Pictorial works"], + ["Jews Brooklyn Pictorial works"], + ["Judaism Customs and practices Pictorial works"], + ["Orthodox Judaism United States Pictorial works"], + ["United States Religious life and customs Pictorial works"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "Bryn Mawr-Haverford-Swarthmore TriCollege Libraries (Bryn Mawr, Haverford, and Swarthmore, PA)", + "lccn": "76009130", + "workcode": "1634411", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "x, 118 p.; 29 cm", + "height": "29 cm", + "dimensions": "29 cm", + "pages": "x; 118 " +}, +"256212048": { + "books_id": "256212048", + "title": "A Battlefield Atlas of the Civil War", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Symonds, Craig L.", + "primaryauthorrole": "Author", + "secondaryauthor": "William J. Clipson (cartography)", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Symonds, Craig L.", + "fl": "Craig L. Symonds", + "role": "Author" + }, + { + "lf": "William J. Clipson (cartography)", + "fl": "William J. Clipson (cartography)", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0933852495", + "isbn": { + "0": "0933852495", + "2": "9780933852495" + }, + "asin": "0933852495", + "ean": ["0933852495"], + "publication": "The Nautical and Aviation Publishing Company of America (1990), 110 pages", + "date": "1990", + "summary": "A Battlefield Atlas of the Civil War by Craig L. Symonds (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.7"], + "wording": ["Administration of Abraham Lincoln, 1861-1865 Civil War", + "History & geography", + "History of North America", + "United States"] + }, + "lcc": { + "code": "G1201.S5 S9" + }, + "subject": [["United States", + "Campaigns.", + "Civil War, 1861-1865"], + ["United States", + "Guidebooks.", + "Civil War, 1861-1865"], + ["United States", + "History", + "Civil War, 1861-1865", + "Battlefields", + "Guidebooks"], + ["United States", + "History", + "Civil War, 1861-1865", + "Battlefields", + "Maps"], + ["United States", + "History", + "Civil War, 1861-1865", + "Campaigns"], + ["United States", + "Maps.", + "Civil War, 1861-1865"]], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "448207", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "110 p.", + "height": "9.8 inches", + "thickness": "0.7 inches", + "length": "7 inches", + "dimensions": "9.8 x 7 x 0.7 inches", + "weight": "1.05 pounds", + "pages": "110 " +}, +"256212098": { + "books_id": "256212098", + "title": "Trial and achievement : currents in Jewish history (from 313)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Sasson, Haim Hillel", + "authors": [{ + "lf": "Ben-Sasson, Haim Hillel", + "fl": "Haim Hillel Ben-Sasson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0706514203", + "isbn": { + "0": "0706514203", + "2": "9780706514209" + }, + "publication": "Jerusalem : Keter Pub. House, [1974]", + "date": "1974", + "summary": "Trial and achievement : currents in Jewish history (from 313) by Haim Hillel Ben-Sasson (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909/.04/924", + "909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS123.B46" + }, + "subject": [["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Judaism History"], + ["Judaism history"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "75304794", + "workcode": "4706405", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 327 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xvi; 327 " +}, +"256212138": { + "books_id": "256212138", + "title": "Zlateh the goat", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "Zlateh the goat by Isaac Bashevis Singer", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["372.6"], + "wording": ["Education", + "Language arts (Communication skills)", + "Primary education (Elementary education)", + "Social sciences"] + }, + "lcc": { + "code": "PZ7" + }, + "subject": [["Children's Films"], + ["Children's films"], + ["Goats Fiction Juvenile films"]], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "Washington State University (Pullman, WA)", + "lccn": "74700298", + "workcode": "28244581", + "entrydate": "2024-01-15", + "format": [{ + "code": "1", + "text": "Book" + }], + "copies": "1", + "volumes": "1" +}, +"256212160": { + "books_id": "256212160", + "title": "Jewish identity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldberg, David Theo", + "secondaryauthor": "Krausz, Michael", + "authors": [{ + "lf": "Goldberg, David Theo", + "fl": "David Theo Goldberg" + }, + { + "lf": "Krausz, Michael", + "fl": "Michael Krausz" + }], + "tags": ["edited by david goldberg"], + "tagidA": [35627859], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1566390397", + "isbn": { + "0": "1566390397", + "2": "9781566390392" + }, + "publication": "Philadelphia : Temple University Press, 1993.", + "date": "1993", + "summary": "Jewish identity by David Theo Goldberg (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892/4", + "305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS143.J456 1993" + }, + "subject": [["Jews Identity"], + ["Jews identity"]], + "genre": ["Nonfiction", + "Anthropology", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1944"], + "source": "University of Wisconsin-Madison (Madison, WI)", + "lccn": "92031754", + "workcode": "548829", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 344 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "ix; 344 " +}, +"256212169": { + "books_id": "256212169", + "title": "To Be a Jew: A Guide to Jewish Observance in Contempory Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Donin, Rabbi Hayim Halevy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Donin, Rabbi Hayim Halevy", + "fl": "Rabbi Hayim Halevy Donin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001PATSYI", + "publication": "Basic Books (1972)", + "date": "1972", + "summary": "To Be a Jew: A Guide to Jewish Observance in Contempory Life by Rabbi Hayim Halevy Donin (1972)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM700.D58" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Judaism", + "Customs and practices"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "109772", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.6 pounds" +}, +"256212218": { + "books_id": "256212218", + "title": "A TREASURY OF JEWISH HUMOUR, EDITED BY NATHAN AUSUBEL", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Ausubel, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ausubel, Nathan", + "fl": "Nathan Ausubel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J5WNJW", + "publication": "DOUBLEDAY & COMPANY (1951)", + "date": "1951", + "summary": "A TREASURY OF JEWISH HUMOUR, EDITED BY NATHAN AUSUBEL by Nathan Ausubel (1951)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.87"], + "wording": ["Collections of humor and satire", + "Collections of literary texts from more than two literatures", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.J5 T74" + }, + "subject": [["Jewish wit and humor"]], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "976935", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.98 pounds" +}, +"256212230": { + "books_id": "256212230", + "title": "The Committed Life: Principles for Good Living from Our Timeless Past", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jungreis, Rebbetzin Esther", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jungreis, Rebbetzin Esther", + "fl": "Rebbetzin Esther Jungreis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060930853", + "isbn": { + "0": "0060930853", + "2": "9780060930851" + }, + "asin": "0060930853", + "ean": ["0060930853"], + "publication": "HarperOne (1999), 333 pages", + "date": "1999", + "summary": "The Committed Life: Principles for Good Living from Our Timeless Past by Rebbetzin Esther Jungreis (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .J859" + }, + "subject": { + "0": ["Jewish ethics", + "Anecdotes"], + "2": ["Jewish way of life", + "Anecdotes"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "46014", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "333 p.; 8 inches", + "height": "8 inches", + "thickness": "0.88 inches", + "length": "5.31 inches", + "dimensions": "8 x 5.31 x 0.88 inches", + "weight": "0.82893810512 pounds", + "pages": "333 " +}, +"256212255": { + "books_id": "256212255", + "title": "The Hebrew Bible, the Old Testament, and historical criticism : Jews and Christians in biblical studies", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Levenson, Jon Douglas", + "authors": [{ + "lf": "Levenson, Jon Douglas", + "fl": "Jon Douglas Levenson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0664254071", + "isbn": { + "0": "0664254071", + "2": "9780664254070" + }, + "publication": "Louisville, Ky. : Westminster/John Knox Press, c1993.", + "date": "1993", + "summary": "The Hebrew Bible, the Old Testament, and historical criticism : Jews and Christians in biblical studies by Jon Douglas Levenson (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6/01", + "221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS476.L48 1993" + }, + "subject": [["Historical criticism (Literature)"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Seattle Public Library (Seattle, WA)", + "oclc": "ocm26587777", + "lccn": "92033118", + "workcode": "716455", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 192 p.; 23 cm", + "height": "23 cm", + "thickness": "0.6 inches", + "length": "6.2 inches", + "dimensions": "23 x 6.2 x 0.6 cm", + "weight": "0.15 pounds", + "pages": "xv; 192 " +}, +"256212278": { + "books_id": "256212278", + "title": "Toward Modernity: European Jewish Model", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1138517380", + "isbn": { + "0": "1138517380", + "2": "9781138517387" + }, + "asin": "1138517380", + "ean": ["1138517380"], + "publication": "Routledge (2017), Edition: 1, 286 pages", + "date": "2017", + "summary": "Toward Modernity: European Jewish Model by Jacob Katz (2017)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS148 .T69" + }, + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "12703498", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "286 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.65 inches", + "length": "5.98 inches", + "dimensions": "9.02 x 5.98 x 0.65 inches", + "weight": "0.99869404686 pounds", + "pages": "286 " +}, +"256212288": { + "books_id": "256212288", + "title": "Fifty key Jewish thinkers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohn-Sherbok, Dan", + "authors": [{ + "lf": "Cohn-Sherbok, Dan", + "fl": "Dan Cohn-Sherbok" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0415126282", + "isbn": { + "0": "0415126282", + "2": "9780415126281" + }, + "publication": "New York : Routledge, 1996.", + "date": "1996", + "summary": "Fifty key Jewish thinkers by Dan Cohn-Sherbok (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["B"] + }, + "lcc": { + "code": "BM750.C57 1996" + }, + "subject": [["Jewish philosophers Biography"], + ["Jewish scholars Biography"], + ["Rabbis Biography"], + ["Zionists Biography"]], + "series": ["Fifty Key Thinkers", + "Routledge Key Guides"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "1944"], + "source": "National Library of Australia (Canberra, ACT)", + "lccn": "96007554", + "workcode": "135763", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 132 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xiii; 132 " +}, +"256212298": { + "books_id": "256212298", + "title": "Response to modernity : a history of the Reform Movement in Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Meyer, Michael A.", + "authors": [{ + "lf": "Meyer, Michael A.", + "fl": "Michael A. Meyer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814325556", + "isbn": { + "0": "0814325556", + "2": "9780814325551" + }, + "publication": "Detroit : Wayne State University Press, 1995.", + "date": "1995", + "summary": "Response to modernity : a history of the Reform Movement in Judaism by Michael A. Meyer (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8/346/09", + "296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.M48 1995" + }, + "subject": [["Reform Judaism History"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "94045560", + "workcode": "314825", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 494 p.; 24 cm", + "height": "24 cm", + "thickness": "1.16 inches", + "length": "7.06 inches", + "dimensions": "24 x 7.06 x 1.16 cm", + "weight": "1.8 pounds", + "pages": "xvi; 494 " +}, +"256212321": { + "books_id": "256212321", + "title": "The bamboo cradle : a Jewish father's story", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schwartzbaum, Avraham", + "secondaryauthor": "Schwartzbaum, Devorah", + "authors": [{ + "lf": "Schwartzbaum, Avraham", + "fl": "Avraham Schwartzbaum" + }, + { + "lf": "Schwartzbaum, Devorah", + "fl": "Devorah Schwartzbaum" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873064593", + "isbn": { + "0": "0873064593", + "2": "9780873064590" + }, + "publication": "Jerusalem : Feldheim, 1989, c1988.", + "date": "1988", + "summary": "The bamboo cradle : a Jewish father's story by Avraham Schwartzbaum (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924024"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "89 B 4042" + }, + "subject": [["Conversion Judaism"], + ["Foundlings Taiwan Biography"], + ["Jews United States Biography"], + ["Jews United States Return to Orthodox Judaism"], + ["Jews United States biography"], + ["Schwartzbaum, Avraham"], + ["Schwartzbaum, Devorah"]], + "genre": ["Nonfiction", + "Anthropology", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1240", + "1247", + "1599", + "1944"], + "source": "Israel Union List", + "workcode": "2181594", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "248 p.; 24 cm", + "height": "24 cm", + "thickness": "0.9 inches", + "length": "6.3 inches", + "dimensions": "24 x 6.3 x 0.9 cm", + "weight": "1.3 pounds", + "pages": "248 " +}, +"256212337": { + "books_id": "256212337", + "title": "Emancipation and Assimilation: Studies in Modern Jewish History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0576802034", + "isbn": { + "0": "0576802034", + "2": "9780576802031" + }, + "asin": "0576802034", + "ean": ["0576802034"], + "publication": "Gregg Publishing (1972), 293 pages", + "date": "1972", + "summary": "Emancipation and Assimilation: Studies in Modern Jewish History by Jacob Katz (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.8"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS135.G33 K32" + }, + "subject": [["Jews", + "Germany", + "History", + "1800-1933"], + ["Jews", + "Legal status, laws, etc"], + ["Judaism", + "History", + "Modern period, 1750-"]], + "genre": ["Nonfiction", + "Anthropology", + "History"], + "genre_id": ["20275895", + "5022", + "1599"], + "source": "amazon.com books", + "workcode": "2385445", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256212339": { + "books_id": "256212339", + "title": "Holy days : the world of a hasidic family", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harris, Lis", + "authors": [{ + "lf": "Harris, Lis", + "fl": "Lis Harris" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684813661", + "isbn": { + "0": "0684813661", + "2": "9780684813660" + }, + "publication": "New York : Touchstone, 1995.", + "date": "1995", + "summary": "Holy days : the world of a hasidic family by Lis Harris (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8332"], + "wording": ["Chasidic", + "Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "F128.J5 H215" + }, + "subject": { + "0": ["Brooklyn (New York, N.Y.)", + "Social life and customs"], + "2": ["Crown Heights (New York, N.Y.)", + "Social life and customs"], + "4": ["Habad", + "History"], + "6": ["Habad", + "New York"], + "7": ["Habad", + "New York (State)", + "New York"], + "8": ["Hasidim", + "New York", + "Social life and customs"], + "9": ["Hasidim", + "New York (State)", + "New York", + "Social life and customs"], + "10": ["Hasidism", + "History"], + "12": ["Jews", + "New York", + "Social life and customs"], + "13": ["Jews", + "New York (State)", + "New York", + "Social life and customs"], + "14": ["New York (N.Y.)", + "Social life and customs"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "workcode": "361938", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "272 p.; 8.3 inches", + "height": "8.3 inches", + "thickness": "0.8 inches", + "length": "5.5 inches", + "dimensions": "8.3 x 5.5 x 0.8 inches", + "weight": "0.45 pounds", + "pages": "272 " +}, +"256212357": { + "books_id": "256212357", + "title": "The recurring pattern : studies in anti-Judaism in modernthought", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rotenstreich, Nathan", + "authors": [{ + "lf": "Rotenstreich, Nathan", + "fl": "Nathan Rotenstreich" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : Weidenfeld & Nicolson, 1963.", + "date": "1963", + "summary": "The recurring pattern : studies in anti-Judaism in modernthought by Nathan Rotenstreich (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": [], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "workcode": "31536746", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"256212364": { + "books_id": "256212364", + "title": "The Sustaining Utterance : Discourses on Chasidic thought", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinsaltz, Adin", + "secondaryauthor": "\u05d0\u05d1\u05df-\u05d9\u05e9\u05e8\u05d0\u05dc, \u05e2\u05d3\u05d9\u05df|Hanegbi, Yehuda", + "secondaryauthorroles": "|", + "authors": [{ + "lf": "Steinsaltz, Adin", + "fl": "Adin Steinsaltz" + }, + { + "lf": "\u05d0\u05d1\u05df-\u05d9\u05e9\u05e8\u05d0\u05dc, \u05e2\u05d3\u05d9\u05df", + "fl": "\u05e2\u05d3\u05d9\u05df \u05d0\u05d1\u05df-\u05d9\u05e9\u05e8\u05d0\u05dc" + }, + { + "lf": "Hanegbi, Yehuda", + "fl": "Yehuda Hanegbi" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Northvale, New Jersey : Jason Aronson Inc., 1989.", + "date": "1989", + "summary": "The Sustaining Utterance : Discourses on Chasidic thought by Adin Steinsaltz (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.83322"], + "wording": ["Chasidic", + "Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Lubavitcher", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "\u05db / 3.11 / 019" + }, + "subject": [["Habad (Hasidism) Literature"], + ["Hasidic literature from 1816 1914"], + ["Schneur Zalman, of Liady. Selections"], + ["\u05d7\u05d1\"\u05d3 (\u05d7\u05e1\u05d9\u05d3\u05d5\u05ea) \u05e1\u05e4\u05e8\u05d5\u05ea \u05e2\u05d9\u05d5\u05e0\u05d9\u05ea"], + ["\u05e9\u05e0\u05d9\u05d0\u05d5\u05e8 \u05d6\u05dc\u05de\u05df \u05d1\u05df \u05d1\u05e8\u05d5\u05da, \u05de\u05dc\u05d3\u05d9. \u05dc\u05e7\u05d5\u05d8\u05d9\u05dd \u05d0\u05e0\u05d2\u05dc\u05d9\u05ea"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "1578036", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 129 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xiii; 129 " +}, +"256212399": { + "books_id": "256212399", + "title": "My Memoirs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peretz, Isaac Leib", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peretz, Isaac Leib", + "fl": "Isaac Leib Peretz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B005KD8OKK", + "publication": "The Citadel Press (1964)", + "date": "1964", + "summary": "My Memoirs by Isaac Leib Peretz (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["928.37"], + "wording": ["Biography & genealogy", + "History & geography", + "People in literature, history, biography, genealogy", + "Writers in German"] + }, + "lcc": { + "code": "PJ5129.P4 Z513" + }, + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com books", + "workcode": "7795203", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.74 pounds" +}, +"256212441": { + "books_id": "256212441", + "title": "What's bothering Rashi? : Megillas Esther ; a guide to in-depth analysis of Rashi's commentary and the Midrash", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonchek, Avigdor", + "secondaryauthor": "Rashi,|Weiss, Elcya Subar", + "secondaryauthorroles": "|", + "authors": [{ + "lf": "Bonchek, Avigdor", + "fl": "Avigdor Bonchek" + }, + { + "lf": "Rashi,", + "fl": "Rashi," + }, + { + "lf": "Weiss, Elcya Subar", + "fl": "Elcya Subar Weiss" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1583307354", + "isbn": { + "0": "1583307354", + "2": "9781583307359" + }, + "publication": "[Jerusalem?] : s.n., 2004.", + "date": "2004", + "summary": "What's bothering Rashi? : Megillas Esther ; a guide to in-depth analysis of Rashi's commentary and the Midrash by Avigdor Bonchek (2004)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["220"], + "wording": ["Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1375.3.B653 2004" + }, + "subject": [["Rashi, 1040-1105"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Yale University (New Haven, CT)", + "workcode": "8475386", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "146 p.; 25 cm", + "height": "25 cm", + "thickness": "0.7 inches", + "length": "6.6 inches", + "dimensions": "25 x 6.6 x 0.7 cm", + "weight": "0.85 pounds", + "pages": "146 " +}, +"256212447": { + "books_id": "256212447", + "title": "Zakhor I: storia ebraica e memoria ebraica", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yerushalmi, Yosef Hayim", + "authors": [{ + "lf": "Yerushalmi, Yosef Hayim", + "fl": "Yosef Hayim Yerushalmi" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Parma, Pratiche, 1983", + "date": "1983", + "summary": "Zakhor I: storia ebraica e memoria ebraica by Yosef Hayim Yerushalmi (1983)", + "language": ["Italian"], + "language_codeA": ["ita"], + "originallanguage_codeA": ["ita"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": [], + "subject": [["Ebrei - Storia"]], + "genre": ["Nonfiction", + "Anthropology", + "Sociology"], + "genre_id": ["20275895", + "5022", + "5686"], + "source": "Servizio Bibliotecario Nazionale, SBN / Italian National Library Service", + "workcode": "31536757", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1" +}, +"256212481": { + "books_id": "256212481", + "title": "Bread givers : a novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yezierska, Anzia", + "authors": [{ + "lf": "Yezierska, Anzia", + "fl": "Anzia Yezierska" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0892550147", + "isbn": { + "0": "0892550147", + "2": "9780892550142" + }, + "publication": "New York : Persea Books, ©1999.", + "date": "1999", + "summary": "Bread givers : a novel by Anzia Yezierska (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3547.E95B7 1999" + }, + "subject": [["Children of Immigrants"], + ["Children of immigrants"], + ["Children of immigrants United States Fiction"], + ["Fathers and Daughters"], + ["Fathers and daughters"], + ["Fathers and daughters United States Fiction"], + ["UNITED STATES"], + ["United States"], + ["United states"], + ["fathers and daughters"]], + "awards": ["500 Great Books by Women", + "Bookriot's 100 New York City Novels", + "LJCRS Book Fair Selection", + "UC Berkeley Summer Reading List", + "Union for Reform Judaism Significant Jewish Books"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "Washington State University (Pullman, WA)", + "workcode": "26894", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxix, 297 p.; 21 cm", + "height": "21 cm", + "thickness": "0.9 inches", + "length": "5.2 inches", + "dimensions": "21 x 5.2 x 0.9 cm", + "weight": "0.4 pounds", + "pages": "xxix; 297 " +}, +"256212504": { + "books_id": "256212504", + "title": "The Dead Sea scrolls;: A college textbook and a study guide", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Mansoor, Menahem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mansoor, Menahem", + "fl": "Menahem Mansoor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EHGOC", + "publication": "Eerdmans (1964), Edition: First American Edition, 210 pages", + "date": "1964", + "summary": "The Dead Sea scrolls;: A college textbook and a study guide by Menahem Mansoor (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM487 .M27" + }, + "genre": ["Nonfiction", + "Anthropology", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3813714", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "210 p.", + "weight": "0.95 pounds", + "pages": "210 " +}, +"256212528": { + "books_id": "256212528", + "title": "The mask Jews wear : the self-deceptions of American Jewry", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Borowitz, Eugene B.", + "authors": [{ + "lf": "Borowitz, Eugene B.", + "fl": "Eugene B. Borowitz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671215493", + "isbn": { + "0": "0671215493", + "2": "9780671215491" + }, + "publication": "New York : Simon and Schuster, 1973", + "date": "1973", + "summary": "The mask Jews wear : the self-deceptions of American Jewry by Eugene B. Borowitz (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "BM205" + }, + "subject": [["Judaism History"], + ["Judaism United States"], + ["Judaism history"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "5022", + "1247", + "1944", + "5686"], + "source": "Israel Union List", + "lccn": "73007926", + "workcode": "933748", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "222 p.; 22 cm", + "height": "22 cm", + "thickness": "1.1 inches", + "length": "5.8 inches", + "dimensions": "22 x 5.8 x 1.1 cm", + "weight": "1 pounds", + "pages": "222 " +}, +"256212570": { + "books_id": "256212570", + "title": "Defending Identity: Its Indispensable Role in Protecting Democracy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sharansky, Natan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sharansky, Natan", + "fl": "Natan Sharansky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "158648513X", + "isbn": { + "0": "158648513X", + "2": "9781586485139" + }, + "asin": "158648513X", + "ean": ["158648513X"], + "publication": "PublicAffairs (2008), 304 pages", + "date": "2008", + "summary": "Defending Identity: Its Indispensable Role in Protecting Democracy by Natan Sharansky (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["321.8"], + "wording": ["Democratic government [formerly : Republic]", + "Political science", + "Social sciences", + "Systems of governments and states"] + }, + "lcc": { + "code": "JA74 .S47" + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "3805"], + "source": "amazon.com books", + "workcode": "5075652", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1 inches", + "weight": "0.96 pounds", + "pages": "304 " +}, +"256212585": { + "books_id": "256212585", + "title": "In Memory's Kitchen: A Legacy from the Women of Terezin", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berenbaum, Michael", + "primaryauthorrole": "Author", + "secondaryauthor": "Brown, Bianca Steiner|Silva, Cara de", + "secondaryauthorroles": "Translator|Editor", + "authors": [{ + "lf": "Berenbaum, Michael", + "fl": "Michael Berenbaum", + "role": "Author" + }, + { + "lf": "Brown, Bianca Steiner", + "fl": "Bianca Steiner Brown", + "role": "Translator" + }, + { + "lf": "Silva, Cara de", + "fl": "Cara de Silva", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0742546462", + "isbn": { + "0": "0742546462", + "2": "9780742546462" + }, + "asin": "0742546462", + "ean": ["0742546462"], + "publication": "Jason Aronson, Inc. (2006), Edition: 15252nd, 160 pages", + "date": "2006", + "summary": "In Memory's Kitchen: A Legacy from the Women of Terezin by Michael Berenbaum (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D805.C9 I5" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Jewish cookery"], + "4": ["Theresienstadt (Concentration camp)"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "Food & Cooking", + "History"], + "genre_id": ["20275895", + "1240", + "20444", + "1599"], + "source": "amazon.com books", + "workcode": "377622", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "160 p.; 8.9 inches", + "height": "8.9 inches", + "thickness": "0.46 inches", + "length": "6.22 inches", + "dimensions": "8.9 x 6.22 x 0.46 inches", + "weight": "0.52029093832 pounds", + "pages": "160 " +}, +"256212621": { + "books_id": "256212621", + "title": "Israel in the Mind of America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Grose, Peter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Grose, Peter", + "fl": "Peter Grose", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394516583", + "isbn": { + "0": "0394516583", + "2": "9780394516585" + }, + "asin": "0394516583", + "ean": ["0394516583"], + "publication": "Knopf (1983), Edition: First Edition, 361 pages", + "date": "1983", + "summary": "Israel in the Mind of America by Peter Grose (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["327.7305694"], + "wording": ["International Relations", + "North America", + "Political science", + "Social sciences", + "U.S.-Asian Relations ", + "United States"] + }, + "lcc": { + "code": "E183.I7 G76" + }, + "subject": [["Jews", + "United States", + "Politics and government"], + ["Palestine", + "Foreign relations", + "United States"], + ["Palestine", + "History", + "Partition, 1947"], + ["United States", + "Ethnic relations"], + ["United States", + "Foreign relations", + "Palestine"], + ["Zionism", + "United States"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "2184347", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "361 p.", + "weight": "1.55 pounds", + "pages": "361 " +}, +"256212637": { + "books_id": "256212637", + "title": "Galut", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baer, Yitzhak F.", + "primaryauthorrole": "Author", + "secondaryauthor": "Robert Warshaw", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Baer, Yitzhak F.", + "fl": "Yitzhak F. Baer", + "role": "Author" + }, + { + "lf": "Robert Warshaw", + "fl": "Robert Warshaw", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805230831", + "isbn": { + "0": "0805230831", + "2": "9780805230833" + }, + "asin": "0805230831", + "ean": ["0805230831"], + "publication": "Schocken Books (1947), Edition: First Edition, 122 pages", + "date": "1947", + "summary": "Galut by Yitzhak F. Baer (1947)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS134 .B2513" + }, + "subject": [["Jewish diaspora"], + ["Jews", + "Philosophy"]], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "5070738", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256212650": { + "books_id": "256212650", + "title": "Hillel the elder: the emergence of classical Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glatzer, Nahum Norbert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glatzer, Nahum Norbert", + "fl": "Nahum Norbert Glatzer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DQ9OG", + "publication": "Schocken Books (1966), Edition: Revised, 100 pages", + "date": "1966", + "summary": "Hillel the elder: the emergence of classical Judaism by Nahum Norbert Glatzer (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.817"], + "wording": ["Ancient World", + "Jewish sects", + "Judaism", + "Other religions", + "Religion", + "Samaritan judaism"] + }, + "lcc": { + "code": "BM755.H45 G54" + }, + "subject": [["Hillel 1st cent. B.C./1st cent"], + ["Hillel, 1st cent. B.C./1st cent"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3209548", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "100 p.", + "weight": "1.01 pounds", + "pages": "100 " +}, +"256212668": { + "books_id": "256212668", + "title": "The story of the prayer book,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Arian, Philip", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Arian, Philip", + "fl": "Philip Arian", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006YAN6Q", + "publication": "Prayer Book Press (1971), 156 pages", + "date": "1971", + "summary": "The story of the prayer book, by Philip Arian (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": [], + "subject": [["Judaism", + "Prayer-books and devotions"], + ["Judaism", + "Prayer-books and devotions", + "History"], + ["Judaism Liturgy", + "Liturgy", + "History"]], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3531767", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "156 p.", + "weight": "0.79 pounds", + "pages": "156 " +}, +"256212682": { + "books_id": "256212682", + "title": "The Hadassah Magazine Jewish Parenting Book", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bell, Roselyn", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Bell, Roselyn", + "fl": "Roselyn Bell", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0029134609", + "isbn": { + "0": "0029134609", + "2": "9780029134603" + }, + "asin": "0029134609", + "ean": ["0029134609"], + "publication": "Free Pr (1989)", + "date": "1989", + "summary": "The Hadassah Magazine Jewish Parenting Book by Roselyn Bell (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "HQ769 .H33" + }, + "subject": [["Child rearing", + "Judaism"], + ["Child rearing", + "United States"], + ["Jewish families", + "United States", + "Religious life"], + ["Jewish religious education of children", + "United States"], + ["Parenting", + "Judaism"]], + "genre": ["Nonfiction", + "Health & Wellness", + "Religion & Spirituality"], + "genre_id": ["20275895", + "683927", + "1944"], + "source": "amazon.com books", + "workcode": "4633071", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.4 inches", + "thickness": "1.6 inches", + "length": "6.1 inches", + "dimensions": "9.4 x 6.1 x 1.6 inches", + "weight": "1.5 pounds", + "pages": "376 " +}, +"256212703": { + "books_id": "256212703", + "title": "Jewish Emancipation and Self-Emancipation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602618", + "isbn": { + "0": "0827602618", + "2": "9780827602618" + }, + "asin": "0827602618", + "ean": ["0827602618"], + "publication": "University of Nebraska Press (1986), Edition: First Edition, 179 pages", + "date": "1986", + "summary": "Jewish Emancipation and Self-Emancipation by Jacob Katz (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS147 .K367" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1582457", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "179 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "1.1 pounds", + "pages": "179 " +}, +"256212743": { + "books_id": "256212743", + "title": "The Talmud for Beginners: Living in a Non-Jewish World (Volume 3)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Abrams, Judith Z.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrams, Judith Z.", + "fl": "Judith Z. Abrams", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0765799677", + "isbn": { + "0": "0765799677", + "2": "9780765799678" + }, + "asin": "0765799677", + "ean": ["0765799677"], + "upc": ["884551737604"], + "publication": "Jason Aronson, Inc. (1997), 192 pages", + "date": "1997", + "summary": "The Talmud for Beginners: Living in a Non-Jewish World (Volume 3) by Judith Z. Abrams (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.12061"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion", + "Talmud"] + }, + "lcc": { + "code": "BM503 .A27" + }, + "series": ["The Talmud for Beginners"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "803862", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 8.94 inches", + "height": "8.94 inches", + "thickness": "0.65 inches", + "length": "6.1 inches", + "dimensions": "8.94 x 6.1 x 0.65 inches", + "weight": "0.6393405598 pounds", + "pages": "192 " +}, +"256212811": { + "books_id": "256212811", + "title": "Judaism and the Scientific Spirit: Issues of Faith", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Plaut, W. Gunther", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Plaut, W. Gunther", + "fl": "W. Gunther Plaut", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007E1EHW", + "publication": "Union of American Hebrew Congregations (1962), 82 pages", + "date": "1962", + "summary": "Judaism and the Scientific Spirit: Issues of Faith by W. Gunther Plaut (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.38"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Personal and Social Morality", + "Religion"] + }, + "lcc": { + "code": "BM538.S3 P5" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "9431180", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "82 p.", + "weight": "0.4 pounds", + "pages": "82 " +}, +"256212820": { + "books_id": "256212820", + "title": "Crown of Aleppo: The Mystery of the Oldest Hebrew Bible Codex", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Tawil, Hayim", + "primaryauthorrole": "Author", + "secondaryauthor": "Schneider, Bernard", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Tawil, Hayim", + "fl": "Hayim Tawil", + "role": "Author" + }, + { + "lf": "Schneider, Bernard", + "fl": "Bernard Schneider", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827608950", + "isbn": { + "0": "0827608950", + "2": "9780827608955" + }, + "asin": "0827608950", + "ean": ["0827608950"], + "publication": "JEWISH PUBLICATON SOCIETY (2010), Edition: Illustrated, 220 pages", + "date": "2010", + "summary": "Crown of Aleppo: The Mystery of the Oldest Hebrew Bible Codex by Hayim Tawil (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.4"], + "wording": ["Old Testament (Tanakh)", + "Original texts and early versions; Codices", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS715.A43 T39" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "9742973", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "220 p.; 10.2 inches", + "height": "10.2 inches", + "thickness": "0.7 inches", + "length": "7 inches", + "dimensions": "10.2 x 7 x 0.7 inches", + "weight": "1.25 pounds", + "pages": "220 " +}, +"256212853": { + "books_id": "256212853", + "title": "Funny, You Don't Look Like a Grandmother", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wyse, Lois", + "primaryauthorrole": "Author", + "secondaryauthor": "Rogers, Lilla", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Wyse, Lois", + "fl": "Lois Wyse", + "role": "Author" + }, + { + "lf": "Rogers, Lilla", + "fl": "Lilla Rogers", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517571579", + "isbn": { + "0": "0517571579", + "2": "9780517571576" + }, + "asin": "0517571579", + "ean": ["0517571579"], + "publication": "Harmony (1988), 111 pages", + "date": "1988", + "summary": "Funny, You Don't Look Like a Grandmother by Lois Wyse (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["818.5402"], + "wording": ["1945-1999", + "20th Century", + "American literature in English", + "American miscellaneous writings in English", + "Literature"] + }, + "lcc": { + "code": "PN6231.G8 W96" + }, + "subject": [["Grandmothers", + "United States", + "Anecdotes"]], + "awards": ["New York Times bestseller"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "466822", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "111 p.; 8.3 inches", + "height": "8.3 inches", + "thickness": "0.5 inches", + "length": "6.2 inches", + "dimensions": "8.3 x 6.2 x 0.5 inches", + "weight": "0.6875 pounds", + "pages": "111 " +}, +"256212854": { + "books_id": "256212854", + "title": "Reading the Talmud: Developing Independence in Gemara Learning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abramson, Henry", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abramson, Henry", + "fl": "Henry Abramson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1478144858", + "isbn": { + "0": "1478144858", + "2": "9781478144854" + }, + "asin": "1478144858", + "ean": ["1478144858"], + "publication": "CreateSpace Independent Publishing Platform (2012), 266 pages", + "date": "2012", + "summary": "Reading the Talmud: Developing Independence in Gemara Learning by Henry Abramson (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.86"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503.6 .A24" + }, + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "9924409", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "266 p.; 9 inches", + "height": "9 inches", + "thickness": "0.6 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.6 inches", + "pages": "266 " +}, +"256212861": { + "books_id": "256212861", + "title": "A Tale Of Love And Darkness", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Oz, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oz, Amos", + "fl": "Amos Oz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "015603252X", + "isbn": { + "0": "015603252X", + "2": "9780156032520" + }, + "asin": "015603252X", + "ean": ["015603252X"], + "publication": "HarperVia (2005), Edition: First Edition, 560 pages", + "date": "2005", + "summary": "A Tale Of Love And Darkness by Amos Oz (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "History & geography"] + }, + "lcc": { + "code": "PJ5054.O9 Z47313" + }, + "subject": { + "0": ["Authors, Israeli", + "Biography"], + "2": ["Oz, Amos", + "Childhood and youth"] + }, + "originaltitle": "\u05e1\u05d9\u05e4\u05d5\u05e8 \u05e2\u05dc \u05d0\u05d4\u05d1\u05d4 \u05d5\u05d7\u05d5\u05e9\u05da", + "awards": ["100 best novels of the 21st century according to Afisha magazine", + "1001 Books You Must Read Before You Die", + "1001 boeken die je gelezen moet hebben!", + "50 Must-Read Modern Classics in Translation", + "Bruno Kreisky Prize for Best Political Book", + "Kanon der Gegenwart: Die 100 besten B\u00fccher des 21. Jahrhunderts (NZZ.ch)", + "Koret Jewish Book Awards", + "National Jewish Book Award", + "Prix France Culture de Litt\u00e9rature \u00c9trang\u00e8re", + "Reading the world in 196 books", + "SWR-Bestenliste", + "The 50 Best Memoirs of the Past 50 Years", + "The Economist Best Books", + "Wingate Literary Prize"], + "genre": ["Biography & Memoir"], + "genre_id": ["1240"], + "source": "amazon.com books", + "workcode": "13134", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "560 p.; 8 inches", + "height": "8 inches", + "thickness": "1.421 inches", + "length": "5.3125 inches", + "dimensions": "8 x 5.3125 x 1.421 inches", + "weight": "0.98 pounds", + "pages": "560 " +}, +"256212898": { + "books_id": "256212898", + "title": "Hayim Greenberg: Anthology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Syrkin, Marie", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Syrkin, Marie", + "fl": "Marie Syrkin", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814313442", + "isbn": { + "0": "0814313442", + "2": "9780814313442" + }, + "asin": "0814313442", + "ean": ["0814313442"], + "publication": "Wayne State University (1968), Edition: First Edition, 344 pages", + "date": "1968", + "summary": "Hayim Greenberg: Anthology by Marie Syrkin (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": [], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "2980536", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256212900": { + "books_id": "256212900", + "title": "Making God's Word Work: A Guide to the Mishnah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0826415571", + "isbn": { + "0": "0826415571", + "2": "9780826415578" + }, + "asin": "0826415571", + "ean": ["0826415571"], + "publication": "Continuum (2004), 400 pages", + "date": "2004", + "summary": "Making God's Word Work: A Guide to the Mishnah by Jacob Neusner (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497 .N4764" + }, + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "10926603", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "400 p.; 9 inches", + "height": "9 inches", + "thickness": "0.78 inches", + "length": "5.999988 inches", + "dimensions": "9 x 5.999988 x 0.78 inches", + "weight": "1.25002102554 pounds", + "pages": "400 " +}, +"256212938": { + "books_id": "256212938", + "title": "To Know A Woman (Harvest in Translation)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Oz, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oz, Amos", + "fl": "Amos Oz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0156906805", + "isbn": { + "0": "0156906805", + "2": "9780156906807" + }, + "asin": "0156906805", + "ean": ["0156906805"], + "publication": "Mariner Books (1992), Edition: First Edition, 272 pages", + "date": "1992", + "summary": "To Know A Woman (Harvest in Translation) by Amos Oz (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.O9 L2913" + }, + "subject": { + "0": ["Domestic Fiction"], + "1": ["Domestic fiction"], + "3": ["Israel", + "Fiction"], + "5": ["Israel", + "fiction"], + "6": ["Married people", + "Fiction"] + }, + "originaltitle": "\u05dc\u05d3\u05e2\u05ea \u05d0\u05d9\u05e9\u05d4", + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "27522", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 8 inches", + "height": "8 inches", + "thickness": "0.678 inches", + "length": "5.3125 inches", + "dimensions": "8 x 5.3125 x 0.678 inches", + "weight": "0.65 pounds", + "pages": "272 " +}, +"256212949": { + "books_id": "256212949", + "title": "Passover Survival Kit", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Apisdorf, Shimon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Apisdorf, Shimon", + "fl": "Shimon Apisdorf", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1881927032", + "isbn": { + "0": "1881927032", + "2": "9781881927037" + }, + "asin": "1881927032", + "ean": ["1881927032"], + "publication": "Leviathan Press (1995), 160 pages", + "date": "1995", + "summary": "Passover Survival Kit by Shimon Apisdorf (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.437"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Passover", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM674 .A75" + }, + "subject": [["Passover", + "Customs and practices"], + ["Passover", + "Liturgy"], + ["Seder", + "Liturgy"]], + "series": ["Survival Kit"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "560619", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "160 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "6 inches", + "length": "1 inch", + "dimensions": "9.25 x 1 x 6 inches", + "weight": "0.95 pounds", + "pages": "160 " +}, +"256212961": { + "books_id": "256212961", + "title": "The Penguin Book of Modern Yiddish Verse", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Various", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Various", + "fl": "Various", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140094725", + "isbn": { + "0": "0140094725", + "2": "9780140094725" + }, + "asin": "0140094725", + "ean": ["0140094725"], + "publication": "Penguin Books (1988), 752 pages", + "date": "1988", + "summary": "The Penguin Book of Modern Yiddish Verse by Various (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.0913"], + "wording": ["-", + "1860\u2013", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Poetry", + "Yiddish"] + }, + "lcc": { + "code": "PJ5191.E3 P46" + }, + "subject": [["Yiddish poetry"], + ["Yiddish poetry", + "Translations into English"]], + "genre": ["Fiction", + "Poetry"], + "genre_id": ["17160326", + "10010"], + "source": "amazon.com books", + "workcode": "1052706", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "752 p.; 7 x 5 inches", + "height": "5 inches", + "thickness": "1 inch", + "length": "7 inches", + "dimensions": "5 x 7 x 1 inches", + "weight": "1.7 pounds", + "pages": "752 " +}, +"256212986": { + "books_id": "256212986", + "title": "500 Judaica: Innovative Contemporary Ritual Art", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hemachandra, Ray", + "primaryauthorrole": "Author", + "secondaryauthor": "Belasco, Daniel", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Hemachandra, Ray", + "fl": "Ray Hemachandra", + "role": "Author" + }, + { + "lf": "Belasco, Daniel", + "fl": "Daniel Belasco", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781600594625", + "isbn": ["9781600594625", + "160059462X"], + "asin": "160059462X", + "ean": ["160059462X"], + "publication": "Union Square & Co. (2010), 419 pages", + "date": "2010", + "summary": "500 Judaica: Innovative Contemporary Ritual Art by Ray Hemachandra (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["704.9"], + "wording": ["Arts", + "Arts & recreation", + "Iconography", + "Special topics in fine and decorative arts"] + }, + "lcc": { + "code": "NK1672 .A15" + }, + "series": ["500 Series"], + "genre": ["Nonfiction", + "Art & Design", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "10546828", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "419 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.25 inches", + "length": "7.75 inches", + "dimensions": "8.25 x 7.75 x 1.25 inches", + "weight": "2.65 pounds", + "pages": "419 " +}, +"256212992": { + "books_id": "256212992", + "title": "The Silence of Heaven: Agnon's Fear of God", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Oz, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oz, Amos", + "fl": "Amos Oz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691155496", + "isbn": { + "0": "0691155496", + "2": "9780691155494" + }, + "asin": "0691155496", + "ean": ["0691155496"], + "publication": "Princeton University Press (2012), 304 pages", + "date": "2012", + "summary": "The Silence of Heaven: Agnon's Fear of God by Amos Oz (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 T423613" + }, + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "961014", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.47 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.47 inches", + "weight": "0.7275254646 pounds", + "pages": "304 " +}, +"256213005": { + "books_id": "256213005", + "title": "Motherland: Beyond the Holocaust: A Mother-Daughter Journey to Reclaim the Past", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chapman, Fern Schumer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chapman, Fern Schumer", + "fl": "Fern Schumer Chapman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140286233", + "isbn": { + "0": "0140286233", + "2": "9780140286236" + }, + "asin": "0140286233", + "ean": ["0140286233"], + "publication": "Penguin Books (2001), Edition: Reprint, 208 pages", + "date": "2001", + "summary": "Motherland: Beyond the Holocaust: A Mother-Daughter Journey to Reclaim the Past by Fern Schumer Chapman (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.33"], + "wording": ["Bavaria", + "Germany and neighboring central European countries", + "History & geography", + "History of Europe", + "Lower Franconia"] + }, + "lcc": { + "code": "DS135.G5 S373" + }, + "subject": [["Illinois", + "Biography"], + ["Jews", + "Illinois", + "Biography"], + ["Jews", + "Illinois.", + "Travel"], + ["Jews", + "Stockstadt am Main", + "Biography"], + ["Stockstadt am Main (Germany)", + "Biography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "502247", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 8.02 x 0.6 inches", + "height": "0.6 inches", + "thickness": "5.42 inches", + "length": "8.02 inches", + "dimensions": "0.6 x 8.02 x 5.42 inches", + "weight": "0.3875 pounds", + "pages": "208 " +}, +"256213025": { + "books_id": "256213025", + "title": "My People's Passover Haggadah: Traditional Texts, Modern Commentaries Volume 1", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Arnow PhD, David", + "primaryauthorrole": "Editor", + "secondaryauthor": "Hoffman, Joel|Arnow, David|Kushner, Rabbi Lawrence|Gray, Alyssa|Green, Dr. Arthur|Brettler, Dr. Marc Zvi|Landes, Rabbi Daniel|Zierler, Dr. Wendy|Polen, Rabbi Nehemia|Balin, Carole|Hoffman PhD, Rabbi Lawrence A.|Hoffman PhD, Rabbi Lawrence A.|Gillman PhD, Rabbi Neil", + "secondaryauthorroles": "Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Editor|Contributor|Contributor", + "authors": [{ + "lf": "Arnow PhD, David", + "fl": "David Arnow PhD", + "role": "Editor" + }, + { + "lf": "Hoffman, Joel", + "fl": "Joel Hoffman", + "role": "Contributor" + }, + { + "lf": "Arnow, David", + "fl": "David Arnow", + "role": "Contributor" + }, + { + "lf": "Kushner, Rabbi Lawrence", + "fl": "Rabbi Lawrence Kushner", + "role": "Contributor" + }, + { + "lf": "Gray, Alyssa", + "fl": "Alyssa Gray", + "role": "Contributor" + }, + { + "lf": "Green, Dr. Arthur", + "fl": "Dr. Arthur Green", + "role": "Contributor" + }, + { + "lf": "Brettler, Dr. Marc Zvi", + "fl": "Dr. Marc Zvi Brettler", + "role": "Contributor" + }, + { + "lf": "Landes, Rabbi Daniel", + "fl": "Rabbi Daniel Landes", + "role": "Contributor" + }, + { + "lf": "Zierler, Dr. Wendy", + "fl": "Dr. Wendy Zierler", + "role": "Contributor" + }, + { + "lf": "Polen, Rabbi Nehemia", + "fl": "Rabbi Nehemia Polen", + "role": "Contributor" + }, + { + "lf": "Balin, Carole", + "fl": "Carole Balin", + "role": "Contributor" + }, + { + "lf": "Hoffman PhD, Rabbi Lawrence A.", + "fl": "Rabbi Lawrence A. Hoffman PhD", + "role": "Editor" + }, + { + "lf": "Hoffman PhD, Rabbi Lawrence A.", + "fl": "Rabbi Lawrence A. Hoffman PhD", + "role": "Contributor" + }, + { + "lf": "Gillman PhD, Rabbi Neil", + "fl": "Rabbi Neil Gillman PhD", + "role": "Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580233546", + "isbn": { + "0": "1580233546", + "2": "9781580233545" + }, + "asin": "1580233546", + "ean": ["1580233546"], + "publication": "Jewish Lights (2008), Edition: 1, 304 pages", + "date": "2008", + "summary": "My People's Passover Haggadah: Traditional Texts, Modern Commentaries Volume 1 by David Arnow PhD (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.45371"], + "wording": ["Judaism", + "Other religions", + "Passover Seder", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM674 .H64" + }, + "series": ["My People's Passover Haggadah"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "7568981", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.; 10 inches", + "height": "9.9999999898 inches", + "thickness": "0.94094488093 inches", + "length": "7 inches", + "dimensions": "9.9999999898 x 7 x 0.94094488093 inches", + "weight": "0.00220462262 pounds", + "pages": "304 " +}, +"256213034": { + "books_id": "256213034", + "title": "Me'ah She'arim: Studies in Medieval Jewish Spiritual Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Azra Fletcher", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Azra Fletcher", + "fl": "Azra Fletcher", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9654931214", + "isbn": { + "0": "9654931214", + "2": "9789654931212" + }, + "asin": "9654931214", + "ean": ["9654931214"], + "publication": "Magnes Press,Israel (2001), 732 pages", + "date": "2001", + "summary": "Me'ah She'arim: Studies in Medieval Jewish Spiritual Life by Azra Fletcher (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31536811", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213054": { + "books_id": "256213054", + "title": "How Good Do We Have to Be? A New Understanding of Guilt and Forgiveness", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kushner, Harold", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kushner, Harold", + "fl": "Harold Kushner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316519332", + "isbn": { + "0": "0316519332", + "2": "9780316519335" + }, + "asin": "0316519332", + "ean": ["0316519332"], + "publication": "Back Bay Books (1997), Edition: 1, 192 pages", + "date": "1997", + "summary": "How Good Do We Have to Be? A New Understanding of Guilt and Forgiveness by Harold Kushner (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1401 .K87" + }, + "subject": { + "0": ["Bible. O.T. Genesis III", + "Criticism, interpretation, etc"], + "1": ["Eden"], + "3": ["Forgiveness", + "Religious aspects"], + "5": ["Good and evil"], + "7": ["Guilt", + "Religious aspects"], + "9": ["Perfection", + "Religious aspects"], + "11": ["Religious addiction"], + "13": ["Self-esteem", + "Religious aspects"] + }, + "awards": ["Audie Award", + "New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "248957", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 7.38 inches", + "height": "7.375 inches", + "thickness": "0.5 inches", + "length": "5 inches", + "dimensions": "7.375 x 5 x 0.5 inches", + "weight": "0.330693393 pounds", + "pages": "192 " +}, +"256213070": { + "books_id": "256213070", + "title": "My People's Passover Haggadah Vol 2: Traditional Texts, Modern Commentaries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Arnow PhD, David", + "primaryauthorrole": "Editor", + "secondaryauthor": "Hoffman, Joel|Arnow, David|Kushner, Rabbi Lawrence|Gray, Alyssa|Green, Dr. Arthur|Brettler, Dr. Marc Zvi|Landes, Rabbi Daniel|Zierler, Dr. Wendy|Polen, Rabbi Nehemia|Balin, Carole|Hoffman PhD, Rabbi Lawrence A.|Hoffman PhD, Rabbi Lawrence A.|Gillman PhD, Rabbi Neil", + "secondaryauthorroles": "Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Editor|Contributor|Contributor", + "authors": [{ + "lf": "Arnow PhD, David", + "fl": "David Arnow PhD", + "role": "Editor" + }, + { + "lf": "Hoffman, Joel", + "fl": "Joel Hoffman", + "role": "Contributor" + }, + { + "lf": "Arnow, David", + "fl": "David Arnow", + "role": "Contributor" + }, + { + "lf": "Kushner, Rabbi Lawrence", + "fl": "Rabbi Lawrence Kushner", + "role": "Contributor" + }, + { + "lf": "Gray, Alyssa", + "fl": "Alyssa Gray", + "role": "Contributor" + }, + { + "lf": "Green, Dr. Arthur", + "fl": "Dr. Arthur Green", + "role": "Contributor" + }, + { + "lf": "Brettler, Dr. Marc Zvi", + "fl": "Dr. Marc Zvi Brettler", + "role": "Contributor" + }, + { + "lf": "Landes, Rabbi Daniel", + "fl": "Rabbi Daniel Landes", + "role": "Contributor" + }, + { + "lf": "Zierler, Dr. Wendy", + "fl": "Dr. Wendy Zierler", + "role": "Contributor" + }, + { + "lf": "Polen, Rabbi Nehemia", + "fl": "Rabbi Nehemia Polen", + "role": "Contributor" + }, + { + "lf": "Balin, Carole", + "fl": "Carole Balin", + "role": "Contributor" + }, + { + "lf": "Hoffman PhD, Rabbi Lawrence A.", + "fl": "Rabbi Lawrence A. Hoffman PhD", + "role": "Editor" + }, + { + "lf": "Hoffman PhD, Rabbi Lawrence A.", + "fl": "Rabbi Lawrence A. Hoffman PhD", + "role": "Contributor" + }, + { + "lf": "Gillman PhD, Rabbi Neil", + "fl": "Rabbi Neil Gillman PhD", + "role": "Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1683362055", + "isbn": { + "0": "1683362055", + "2": "9781683362050" + }, + "asin": "1683362055", + "ean": ["1683362055"], + "publication": "Jewish Lights (2008), Edition: 1, 310 pages", + "date": "2008", + "summary": "My People's Passover Haggadah Vol 2: Traditional Texts, Modern Commentaries by David Arnow PhD (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["Religion & Spirituality"], + "genre_id": ["1944"], + "source": "amazon.com books", + "workcode": "31536813", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "310 p.; 10 inches", + "height": "10 inches", + "thickness": "0.65 inches", + "length": "7 inches", + "dimensions": "10 x 7 x 0.65 inches", + "weight": "1.19 pounds", + "pages": "310 " +}, +"256213079": { + "books_id": "256213079", + "title": "A Clash of Heroes: Brandeis, Weizmann, and American Zionism (Studies in Jewish History)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Halpern, Ben", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Halpern, Ben", + "fl": "Ben Halpern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195040627", + "isbn": { + "0": "0195040627", + "2": "9780195040623" + }, + "asin": "0195040627", + "ean": ["0884201738708"], + "upc": ["884201738708"], + "publication": "Oxford University Press (1987), Edition: 1, 320 pages", + "date": "1987", + "summary": "A Clash of Heroes: Brandeis, Weizmann, and American Zionism (Studies in Jewish History) by Ben Halpern (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149 .H338" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "5456495", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "320 p.; 9.56 inches", + "height": "9.56 inches", + "thickness": "0.993 inches", + "length": "6.38 inches", + "dimensions": "9.56 x 6.38 x 0.993 inches", + "weight": "1.38450300536 pounds", + "pages": "320 " +}, +"256213081": { + "books_id": "256213081", + "title": "Words On Fire: One Woman's Journey Into The Sacred", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "L Ochs, Vanessa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "L Ochs, Vanessa", + "fl": "Vanessa L Ochs", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813367182", + "isbn": { + "0": "0813367182", + "2": "9780813367187" + }, + "asin": "0813367182", + "ean": ["0813367182"], + "publication": "Westview Press (1999), Edition: 1, 372 pages", + "date": "1999", + "summary": "Words On Fire: One Woman's Journey Into The Sacred by Vanessa L Ochs (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.082"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.O24 A3" + }, + "subject": [["Jewish women", + "Religious life"], + ["Jews", + "Return to Orthodox Judaism"], + ["Ochs, Vanessa L"]], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1240", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "29571", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "372 p.; 9 inches", + "height": "9 inches", + "thickness": "0.84 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.84 inches", + "weight": "0.99869404686 pounds", + "pages": "372 " +}, +"256213110": { + "books_id": "256213110", + "title": "The Illustrated History of the Jewish People", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "de Lange, Nicholas", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "de Lange, Nicholas", + "fl": "Nicholas de Lange", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0151003025", + "isbn": { + "0": "0151003025", + "2": "9780151003020" + }, + "asin": "0151003025", + "ean": ["0151003025"], + "publication": "Harcourt (1997), Edition: 1, 448 pages", + "date": "1997", + "summary": "The Illustrated History of the Jewish People by Nicholas de Lange (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS117 ." + }, + "subject": [["Jews", + "Civilization"], + ["Jews", + "History"], + ["Jews", + "history"], + ["Judaism", + "History"], + ["Judaism", + "history"]], + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "721210", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "448 p.; 10.75 inches", + "height": "10.75 inches", + "thickness": "1.25 inches", + "length": "8.25 inches", + "dimensions": "10.75 x 8.25 x 1.25 inches", + "weight": "0.000625 pounds", + "pages": "448 " +}, +"256213129": { + "books_id": "256213129", + "title": "Essential Papers on the Talmud (Essential Papers on Jewish Studies, 9)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chernick, Michael", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Chernick, Michael", + "fl": "Michael Chernick", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081471496X", + "isbn": { + "0": "081471496X", + "2": "9780814714966" + }, + "asin": "081471496X", + "ean": ["081471496X"], + "publication": "NYU Press (1994), 484 pages", + "date": "1994", + "summary": "Essential Papers on the Talmud (Essential Papers on Jewish Studies, 9) by Michael Chernick (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504 .E78" + }, + "subject": [["Talmud", + "Criticism, interpretation, etc"], + ["Talmud Yerushalmi", + "Criticism, interpretation, etc"]], + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "3018624", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "484 p.; 9 inches", + "height": "9 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.25 inches", + "weight": "1.9 pounds", + "pages": "484 " +}, +"256213144": { + "books_id": "256213144", + "title": "In the Land of Morning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Petrakis, Harry Mark", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Petrakis, Harry Mark", + "fl": "Harry Mark Petrakis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0595446043", + "isbn": { + "0": "0595446043", + "2": "9780595446049" + }, + "asin": "0595446043", + "ean": ["0595446043"], + "publication": "iUniverse (2007), 234 pages", + "date": "2007", + "summary": "In the Land of Morning by Harry Mark Petrakis (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.P4885" + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "10438278", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "234 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.53 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.53 inches", + "weight": "0.85098433132 pounds", + "pages": "234 " +}, +"256213205": { + "books_id": "256213205", + "title": "Hear, Ye Sons: A Novel.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fineman, Irving", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fineman, Irving", + "fl": "Irving Fineman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000WLXSGU", + "publication": "Modern Library", + "summary": "Hear, Ye Sons: A Novel. by Irving Fineman", + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ3.F4937 PS3511 .I553" + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "1790302", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"256213213": { + "books_id": "256213213", + "title": "The DAF Outline", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Talmud Bavli", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Talmud Bavli", + "fl": "Talmud Bavli", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JVOX6W", + "publication": "Chazoras Hashas (2005), 249 pages", + "date": "2005", + "summary": "The DAF Outline by Talmud Bavli (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31536827", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213233": { + "books_id": "256213233", + "title": "Jewish art: an illustrated history.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001OY5O3E", + "publication": "McGraw-Hill", + "summary": "Jewish art: an illustrated history. by Cecil Roth", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["709"], + "wording": ["Arts", + "Arts & recreation", + "History, geographic treatment, biography"] + }, + "lcc": { + "code": "N7415 .R625" + }, + "subject": [["Art, Jewish", + "History"]], + "genre": ["Nonfiction", + "Art & Design", + "History"], + "genre_id": ["20275895", + "9985304", + "1599"], + "source": "amazon.com books", + "workcode": "1355716", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"256213372": { + "books_id": "256213372", + "title": "The Jewish Political Tradition, Vol.1: Authority", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "al., Michael Walzer et", + "primaryauthorrole": "Author", + "secondaryauthor": "Walzer, Michael|Loberbaum, Yair|Lorberbaum, Mr. Menachem|Zohar, Mr. Noam J.", + "secondaryauthorroles": "Editor|Editor|Editor|Editor", + "authors": [{ + "lf": "al., Michael Walzer et", + "fl": "Michael Walzer et al.", + "role": "Author" + }, + { + "lf": "Walzer, Michael", + "fl": "Michael Walzer", + "role": "Editor" + }, + { + "lf": "Loberbaum, Yair", + "fl": "Yair Loberbaum", + "role": "Editor" + }, + { + "lf": "Lorberbaum, Mr. Menachem", + "fl": "Mr. Menachem Lorberbaum", + "role": "Editor" + }, + { + "lf": "Zohar, Mr. Noam J.", + "fl": "Mr. Noam J. Zohar", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300078226", + "isbn": { + "0": "0300078226", + "2": "9780300078220" + }, + "asin": "0300078226", + "ean": ["0300078226"], + "publication": "Yale University Press (2000), Edition: annotated edition, 592 pages", + "date": "2000", + "summary": "The Jewish Political Tradition, Vol.1: Authority by Michael Walzer et al. (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.088"], + "wording": ["Culture Studies", + "Political Science ", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS140 .J475" + }, + "series": ["The Jewish political tradition"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "1172223", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "592 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.25 x 6.5 x 1.5 inches", + "weight": "2.20462262 pounds", + "pages": "592 " +}, +"256213380": { + "books_id": "256213380", + "title": "Bernard J. Bamberger's The Bible: A Modern Jewish Approach [Volume 2 of the A Hillel Little Series]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00SID0GW8", + "publication": "B'nai B'rith Hillel Foundations, 96 pages", + "summary": "Bernard J. Bamberger's The Bible: A Modern Jewish Approach [Volume 2 of the A Hillel Little Series] by unknown author", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31536871", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "96 p.", + "weight": "1.01 pounds", + "pages": "96 " +}, +"256213403": { + "books_id": "256213403", + "title": "Great Jewish Thinkers of the Twentieth Century", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Noveck, Simon", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Noveck, Simon", + "fl": "Simon Noveck", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000PA5GMW", + "publication": "Washington: B'nai B'rith, Department of Adult Jewish Education, 1963 (1963), Edition: Later Printing, 326 pages", + "date": "1963", + "summary": "Great Jewish Thinkers of the Twentieth Century by Simon Noveck (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.082"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM42.N6" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "series": ["B'nai B'rith great books", + "B'nai B'rith history of the Jewish people"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "2553506", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "326 p.", + "weight": "1.5 pounds", + "pages": "326 " +}, +"256213513": { + "books_id": "256213513", + "title": "Great Ages and Ideas of the Jewish People", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schwarz, Leo W.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Schwarz, Leo W.", + "fl": "Leo W. Schwarz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394607856", + "isbn": { + "0": "0394607856", + "2": "9780394607856" + }, + "asin": "0394607856", + "ean": ["0394607856"], + "publication": "Modern Lib (1973), 515 pages", + "date": "1973", + "summary": "Great Ages and Ideas of the Jewish People by Leo W. Schwarz (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS113.S38" + }, + "subject": { + "0": ["Judaism", + "History"], + "2": ["Judaism", + "history"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "179079", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "515 p.", + "height": "8 inches", + "thickness": "1.9 inches", + "length": "5.4 inches", + "dimensions": "8 x 5.4 x 1.9 inches", + "weight": "1.55 pounds", + "pages": "515 " +}, +"256213535": { + "books_id": "256213535", + "title": "The Journeys of David Toback", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Malkin, Carole", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Malkin, Carole", + "fl": "Carole Malkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1484885724", + "isbn": { + "0": "1484885724", + "2": "9781484885727" + }, + "asin": "1484885724", + "ean": ["1484885724"], + "publication": "CreateSpace Independent Publishing Platform (2013), 298 pages", + "date": "2013", + "summary": "The Journeys of David Toback by Carole Malkin (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.004924"], + "wording": ["Ethnic minorities", + "History & geography", + "History of Europe", + "Jews", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.R95 T635" + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "1245668", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "298 p.; 7.99 inches", + "height": "7.99 inches", + "thickness": "0.63 inches", + "length": "5.24 inches", + "dimensions": "7.99 x 5.24 x 0.63 inches", + "weight": "0.69 pounds", + "pages": "298 " +}, +"256213590": { + "books_id": "256213590", + "title": "Whose Bible Is It? : A Short History of the Scriptures", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pelikan, Jaroslav", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pelikan, Jaroslav", + "fl": "Jaroslav Pelikan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780143036777", + "isbn": ["9780143036777", + "0143036777"], + "asin": "0143036777", + "ean": ["0143036777"], + "publication": "Penguin Books (2006), Edition: Reprint, 288 pages", + "date": "2006", + "summary": "Whose Bible Is It? : A Short History of the Scriptures by Jaroslav Pelikan (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.09"], + "wording": ["--", + "Biography And History", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS445 .P46" + }, + "subject": [["Bible", + "History"]], + "originaltitle": "Whose Bible is it? : a history of the Scriptures through the ages", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "12318", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "5.6 inches", + "length": "0.6 inches", + "dimensions": "8.5 x 0.6 x 5.6 inches", + "weight": "0.55 pounds", + "pages": "288 " +}, +"256213695": { + "books_id": "256213695", + "title": "The Jewish Political Tradition: Volume II: Membership", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Walzer, Michael", + "primaryauthorrole": "Author", + "secondaryauthor": "Zohar, Noam J.|Lorberbaum, Menachem|Ackerman, Ari", + "secondaryauthorroles": "Author|Author|Author", + "authors": [{ + "lf": "Walzer, Michael", + "fl": "Michael Walzer", + "role": "Author" + }, + { + "lf": "Zohar, Noam J.", + "fl": "Noam J. Zohar", + "role": "Author" + }, + { + "lf": "Lorberbaum, Menachem", + "fl": "Menachem Lorberbaum", + "role": "Author" + }, + { + "lf": "Ackerman, Ari", + "fl": "Ari Ackerman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300094280", + "isbn": { + "0": "0300094280", + "2": "9780300094282" + }, + "asin": "0300094280", + "ean": ["0300094280"], + "publication": "Yale University Press (2003), 656 pages", + "date": "2003", + "summary": "The Jewish Political Tradition: Volume II: Membership by Michael Walzer (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.088296"], + "wording": ["Culture Studies", + "Political Science ", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS140.J475" + }, + "series": ["The Jewish political tradition"], + "genre": ["Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "4775822", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "656 p.; 9.64 inches", + "height": "9.64 inches", + "thickness": "1.63 inches", + "length": "6.46 inches", + "dimensions": "9.64 x 6.46 x 1.63 inches", + "weight": "2.25312431764 pounds", + "pages": "656 " +}, +"256213698": { + "books_id": "256213698", + "title": "Deborah, Golda, and Me: Being Female and Jewish in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pogrebin, Letty Cottin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pogrebin, Letty Cottin", + "fl": "Letty Cottin Pogrebin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517575175", + "isbn": { + "0": "0517575175", + "2": "9780517575178" + }, + "asin": "0517575175", + "ean": ["0517575175"], + "publication": "Crown (1991), Edition: First Edition, 396 pages", + "date": "1991", + "summary": "Deborah, Golda, and Me: Being Female and Jewish in America by Letty Cottin Pogrebin (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.0492402"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 P59" + }, + "subject": { + "0": ["Feminists", + "United States", + "Biography"], + "2": ["Jewish women", + "United States", + "Biography"], + "4": ["Jews", + "United States", + "Biography"], + "6": ["Pogrebin, Letty Cottin"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "179038", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "396 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.5 inches", + "weight": "1.7 pounds", + "pages": "396 " +}, +"256213706": { + "books_id": "256213706", + "title": "A Rabbinic Anthology", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Montefiore, Claude Joseph Goldsmid", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Montefiore, Claude Joseph Goldsmid", + "fl": "Claude Joseph Goldsmid Montefiore", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805235396", + "isbn": { + "0": "0805235396", + "2": "9780805235395" + }, + "asin": "0805235396", + "ean": ["0805235396"], + "publication": "Schocken Books (1974), 853 pages", + "date": "1974", + "summary": "A Rabbinic Anthology by Claude Joseph Goldsmid Montefiore (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40 .M6" + }, + "subject": { + "0": ["Aggada", + "Translations into English"], + "2": ["Jewish ethics"], + "4": ["Jewish literature"], + "6": ["Judaism"], + "8": ["Midrash", + "Translations into English"], + "10": ["judaism"] + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "676251", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213722": { + "books_id": "256213722", + "title": "The Role of religion in modern Jewish history: Proceedings of regional conferences of the Association for Jewish Studies, held at the University of ... the University of Toronto in March-April 1974", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0915938006", + "isbn": { + "0": "0915938006", + "2": "9780915938001" + }, + "asin": "0915938006", + "ean": ["0915938006"], + "publication": "The Association (1975), Edition: First Edition, 171 pages", + "date": "1975", + "summary": "The Role of religion in modern Jewish history: Proceedings of regional conferences of the Association for Jewish Studies, held at the University of ... the University of Toronto in March-April 1974 by Jacob Katz (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM195.R57" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "6595319", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"256213741": { + "books_id": "256213741", + "title": "The Condition of Jewish Belief: A Symposium", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Editors of Commentary Magazine", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Editors of Commentary Magazine", + "fl": "Editors of Commentary Magazine", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688636", + "isbn": { + "0": "0876688636", + "2": "9780876688632" + }, + "asin": "0876688636", + "ean": ["0876688636"], + "publication": "Jason Aronson, Inc. (1989), Edition: First Edition, 280 pages", + "date": "1989", + "summary": "The Condition of Jewish Belief: A Symposium by Editors of Commentary Magazine (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601.C63" + }, + "subject": { + "0": ["Judaism", + "Doctrines"], + "2": ["Judaism", + "United States"] + }, + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1715361", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "280 p.", + "weight": "1.45 pounds", + "pages": "280 " +}, +"256213742": { + "books_id": "256213742", + "title": "Gateway to Happiness", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pliskin, Zelig", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pliskin, Zelig", + "fl": "Zelig Pliskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000PCZTAO", + "publication": "Bnay Yakov Publications (2005)", + "date": "2005", + "summary": "Gateway to Happiness by Zelig Pliskin (2005)", + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM729.H3 P551983" + }, + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1695263", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.9 pounds" +}, +"256213753": { + "books_id": "256213753", + "title": "Maggidim and Hasidim: Their Wisdom", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Newman Louis I.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Newman Louis I.", + "fl": "Newman Louis I.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001GFDRCQ", + "publication": "Bloch Publishing Company (1962), Edition: First Edition, First Printing", + "date": "1962", + "summary": "Maggidim and Hasidim: Their Wisdom by Newman Louis I. (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "31537019", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.15 pounds" +}, +"256213758": { + "books_id": "256213758", + "title": "With My Own Eyes: The Autobiography of a Historian (TAUBER INSTITUTE FOR THE STUDY OF EUROPEAN JEWRY SERIES)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874516390", + "isbn": { + "0": "0874516390", + "2": "9780874516395" + }, + "asin": "0874516390", + "ean": ["0874516390"], + "publication": "Brandeis Univ (1995), Edition: First Edition, 183 pages", + "date": "1995", + "summary": "With My Own Eyes: The Autobiography of a Historian (TAUBER INSTITUTE FOR THE STUDY OF EUROPEAN JEWRY SERIES) by Jacob Katz (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.0004924"], + "wording": ["Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Standard subdivisions of Central Europe", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS115.K37 A3" + }, + "series": ["Tauber Institute for the Study of European Jewry"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "18667570", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "183 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1 pound", + "pages": "183 " +}, +"256213768": { + "books_id": "256213768", + "title": "The Jewish Family Album", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hubmann, Franz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hubmann, Franz", + "fl": "Franz Hubmann", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000OL88JA", + "publication": "Routledge & Kegan Paul (1974), Edition: 1st U.S. Edition, 317 pages", + "date": "1974", + "summary": "The Jewish Family Album by Franz Hubmann (1974)", + "language": ["French"], + "language_codeA": ["fre"], + "originallanguage": ["German"], + "originallanguage_codeA": ["fre", + "ger"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS112 .H813" + }, + "subject": [["Jews", + "Pictorial works"], + ["Jews", + "Social life and customs", + "Pictorial works"]], + "genre": ["Nonfiction", + "Art & Design", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2037900", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "317 p.", + "weight": "3.88 pounds", + "pages": "317 " +}, +"256213771": { + "books_id": "256213771", + "title": "Mitzvah Girls: Bringing Up the Next Generation of Hasidic Jews in Brooklyn", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fader, Ayala", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fader, Ayala", + "fl": "Ayala Fader", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691139172", + "isbn": { + "0": "0691139172", + "2": "9780691139173" + }, + "asin": "0691139172", + "ean": ["0691139172"], + "publication": "Princeton University Press (2009), 280 pages", + "date": "2009", + "summary": "Mitzvah Girls: Bringing Up the Next Generation of Hasidic Jews in Brooklyn by Ayala Fader (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM727 .F33" + }, + "awards": ["National Jewish Book Award", + "New York City Book Award"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "Religion & Spirituality", + "Sexuality and Gender Studies", + "Sociology"], + "genre_id": ["20275895", + "5022", + "1247", + "1944", + "6880", + "5686"], + "source": "amazon.com books", + "workcode": "9070054", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "280 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.87523518014 pounds", + "pages": "280 " +}, +"256213778": { + "books_id": "256213778", + "title": "Mori Sa'id", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hayim; Halpern Ben (translator) Hazaz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hayim; Halpern Ben (translator) Hazaz", + "fl": "Hayim; Halpern Ben (translator) Hazaz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CJTJ9", + "publication": "Abelard-Schuman (1957), Edition: First Edition, 340 pages", + "date": "1957", + "summary": "Mori Sa'id by Hayim; Halpern Ben (translator) Hazaz (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.H338 M" + }, + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "9921265", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213793": { + "books_id": "256213793", + "title": "Jewish Self-Government in the Middle Ages", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Finkelstein, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Finkelstein, Louis", + "fl": "Louis Finkelstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0016FVKXE", + "publication": "Jewish Theological Seminary of America (1924)", + "date": "1924", + "summary": "Jewish Self-Government in the Middle Ages by Louis Finkelstein (1924)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS124.F5" + }, + "subject": [["Councils and synods"], + ["Jewish law"], + ["Jews", + "History", + "70-"], + ["Jews", + "Politics and government"]], + "genre": ["Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "1361697", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213800": { + "books_id": "256213800", + "title": "Studies in the Weekly Sidra : First Series, 5719", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leibowitz, Nehama", + "authors": [{ + "lf": "Leibowitz, Nehama", + "fl": "Nehama Leibowitz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem : W.Z.O., Dept. for Torah Education and Culture in the Diaspora, 1958.", + "date": "1958", + "summary": "Studies in the Weekly Sidra : First Series, 5719 by Nehama Leibowitz (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["\u202a222.78 LEI", + "222.78"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.L513" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "5612591", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "22 cm", + "height": "22 cm", + "dimensions": "22 cm" +}, +"256213804": { + "books_id": "256213804", + "title": "Posterity: Letters of Great Americans to Their Children", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lawson, Dorie McCullough", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lawson, Dorie McCullough", + "fl": "Dorie McCullough Lawson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "038550330X", + "isbn": { + "0": "038550330X", + "2": "9780385503303" + }, + "asin": "0767909046", + "ean": ["0767909046"], + "publication": "Anchor (2008), Edition: Reprint, 336 pages", + "date": "2008", + "summary": "Posterity: Letters of Great Americans to Their Children by Dorie McCullough Lawson (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973"], + "wording": ["History & geography", + "History of North America", + "United States"] + }, + "lcc": { + "code": "E173 .P77" + }, + "subject": { + "0": ["American letters"], + "2": ["United States", + "Biography"], + "4": ["United States", + "Civilization", + "Sources"], + "6": ["United States", + "History", + "Sources"] + }, + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "303186", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 7.92 inches", + "height": "7.92 inches", + "thickness": "0.7 inches", + "length": "5.23 inches", + "dimensions": "7.92 x 5.23 x 0.7 inches", + "weight": "0.61288508836 pounds", + "pages": "336 " +}, +"256213805": { + "books_id": "256213805", + "title": "Wanderings", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Potok, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Potok, Chaim", + "fl": "Chaim Potok", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0921QX5WX", + "publication": "Ballantine Books (2021), 546 pages", + "date": "2021", + "summary": "Wanderings by Chaim Potok (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS117.P65" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"] + }, + "awards": ["New York Times bestseller", + "Torchlight List"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "43106", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"256213813": { + "books_id": "256213813", + "title": "Follow my footprints : changing images of women in American Jewish fiction", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fishman, Sylvia Barack", + "authors": [{ + "lf": "Fishman, Sylvia Barack", + "fl": "Sylvia Barack Fishman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874515831", + "isbn": { + "0": "0874515831", + "2": "9780874515831" + }, + "publication": "Hanover, NH : Brandeis University Press, c1992.", + "date": "1992", + "summary": "Follow my footprints : changing images of women in American Jewish fiction by Sylvia Barack Fishman (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.008/09287/089924", + "813.008"], + "wording": ["American fiction in English", + "American literature in English", + "By type", + "Literature"] + }, + "lcc": { + "code": "PS648.J4F65 1992" + }, + "subject": [["American fiction Jewish authors"], + ["JEWS"], + ["Jewish Women"], + ["Jewish women"], + ["Jewish women United States Fiction"], + ["Jews"], + ["Jews United States Fiction"], + ["UNITED STATES"], + ["United States"], + ["United states"], + ["jews"]], + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "Cornell University (Ithaca, NY)", + "lccn": "91050813", + "workcode": "3264209", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 506 p.; 24 cm", + "height": "24 cm", + "thickness": "1.16 inches", + "length": "6.01 inches", + "dimensions": "24 x 6.01 x 1.16 cm", + "weight": "1.51 pounds", + "pages": "xv; 506 " +}, +"256213816": { + "books_id": "256213816", + "title": "Studies in the Weekly Sidra 5720 Annual", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leibowitz, Nehama", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Leibowitz, Nehama", + "fl": "Nehama Leibowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GWIREI", + "publication": "World Zionist Organization (1960), Edition: First Edition", + "date": "1960", + "summary": "Studies in the Weekly Sidra 5720 Annual by Nehama Leibowitz (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "13749023", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.58 pounds" +}, +"256213824": { + "books_id": "256213824", + "title": "Studies in the Weekly Sidra 5721 Annual", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neham Leibowitz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neham Leibowitz", + "fl": "Neham Leibowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002K54HJS", + "publication": "World Zionist Organization, Jerusalem", + "summary": "Studies in the Weekly Sidra 5721 Annual by Neham Leibowitz", + "lcc": [], + "genre": ["No Genre"], + "genre_id": ["10037570"], + "source": "amazon.com books", + "workcode": "30221212", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.000625 pounds" +}, +"256213840": { + "books_id": "256213840", + "title": "The French Enlightenment and the Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hertzberg, Arthur", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hertzberg, Arthur", + "fl": "Arthur Hertzberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231073852", + "isbn": { + "0": "0231073852", + "2": "9780231073851" + }, + "asin": "0231073852", + "ean": ["0231073852"], + "publication": "Columbia University Press (1990), Edition: Revised ed., 420 pages", + "date": "1990", + "summary": "The French Enlightenment and the Jews by Arthur Hertzberg (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.F82 H4" + }, + "subject": { + "0": ["Antisemitism", + "France", + "History"], + "1": ["Antisemitism", + "France", + "History", + "18th century"], + "2": ["Enlightenment", + "France"], + "4": ["France", + "Ethnic relations"], + "6": ["Jews", + "France", + "History"], + "7": ["Jews", + "France", + "History", + "18th century"], + "8": ["Jews", + "France", + "Social conditions"] + }, + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "279331", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "420 p.; 8.08 x 1.3 inches", + "height": "1.3 inches", + "thickness": "5.74 inches", + "length": "8.08 inches", + "dimensions": "1.3 x 8.08 x 5.74 inches", + "weight": "1.03176338616 pounds", + "pages": "420 " +}, +"256213858": { + "books_id": "256213858", + "title": "Varieties Of Jewish Belief", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eisenstein, Ira, Ed.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eisenstein, Ira, Ed.", + "fl": "Ira Eisenstein, Ed.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J6ZOHO", + "publication": "Reconstructionist Press (1966), Edition: First Edition", + "date": "1966", + "summary": "Varieties Of Jewish Belief by Ira Eisenstein, Ed. (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601.E5" + }, + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "9270830", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.35 pounds" +},"256213877": { + "books_id": "256213877", + "title": "Biblical Hebrew for Students of Modern Israeli Hebrew", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brettler, Marc Zvi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brettler, Marc Zvi", + "fl": "Marc Zvi Brettler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300084404", + "isbn": { + "0": "0300084404", + "2": "9780300084405" + }, + "asin": "0300084404", + "ean": ["0300084404"], + "publication": "Yale University Press (2001), Edition: First Edition, 368 pages", + "date": "2001", + "summary": "Biblical Hebrew for Students of Modern Israeli Hebrew by Marc Zvi Brettler (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.482421"], + "wording": ["Afro-Asiatic languages", + "For English-speakers", + "For people speaking English and Old English", + "Hebrew", + "Language", + "Other languages", + "Standard Hebrew usage; applied linguistics; texts for learning the language", + "Structural approach to expression for people whose native language is different", + "Structural approach to expression; formal grammar"] + }, + "lcc": { + "code": "PJ4567 .B74" + }, + "subject": [["Hebrew language", + "Grammar"]], + "source": "amazon.com books", + "workcode": "457818", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.; 11.28 x 1 inches", + "height": "1 inch", + "thickness": "8.88 inches", + "length": "11.28 inches", + "dimensions": "1 x 11.28 x 8.88 inches", + "weight": "2.38 pounds", + "pages": "368 " +}, +"256213879": { + "books_id": "256213879", + "title": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03)", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01FGPJERI", + "publication": "Prentice-Hall (1973), Edition: First Edition", + "date": "1973", + "summary": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03) (1973)", + "lcc": [], + "source": "amazon.com books", + "workcode": "28727711", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256213897": { + "books_id": "256213897", + "title": "A Nation of nations: The people who came to America as seen through objects and documents exhibited at the Smithsonian Institution", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Peter Marzio", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peter Marzio", + "fl": "Peter Marzio", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060128364", + "isbn": { + "0": "0060128364", + "2": "9780060128364" + }, + "asin": "0060128364", + "ean": ["0060128364"], + "publication": "Harper & Row (1976), Edition: First Edition, 670 pages", + "date": "1976", + "summary": "A Nation of nations: The people who came to America as seen through objects and documents exhibited at the Smithsonian Institution by Peter Marzio (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973"], + "wording": ["History & geography", + "History of North America", + "United States"] + }, + "lcc": { + "code": "E169 .N3742" + }, + "source": "amazon.com books", + "workcode": "7125659", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.5", + "text": "Unbound paper" + }], + "copies": "1", + "physical_description": "670 p.", + "weight": "4.15 pounds", + "pages": "670 " +}, +"256213946": { + "books_id": "256213946", + "title": "Crafts of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dayan, Ruth", + "primaryauthorrole": "Author", + "secondaryauthor": "Feinberg, Wilburt", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Dayan, Ruth", + "fl": "Ruth Dayan", + "role": "Author" + }, + { + "lf": "Feinberg, Wilburt", + "fl": "Wilburt Feinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "002534420X", + "isbn": { + "0": "002534420X", + "2": "9780025344204" + }, + "asin": "002534420X", + "ean": ["002534420X"], + "publication": "Macmillan Pub Co (1974), 174 pages", + "date": "1974", + "summary": "Crafts of Israel by Ruth Dayan (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["745.5"], + "wording": ["Arts & recreation", + "Decorative arts", + "Design & related arts", + "Handicrafts"] + }, + "lcc": { + "code": "TT113.I75 D38" + }, + "subject": [["Handicraft", + "Israel"]], + "source": "amazon.com books", + "workcode": "1195677", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "174 p.", + "height": "10 inches", + "thickness": "0.6 inches", + "length": "9.8 inches", + "dimensions": "10 x 9.8 x 0.6 inches", + "weight": "1 pound", + "pages": "174 " +}, +"256213989": { + "books_id": "256213989", + "title": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03)", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01FGPJERI", + "publication": "Prentice-Hall (1973), Edition: First Edition", + "date": "1973", + "summary": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03) (1973)", + "lcc": [], + "source": "amazon.com books", + "workcode": "28727711", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256214002": { + "books_id": "256214002", + "title": "Lioness: Golda Meir and the Nation of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klagsbrun, Francine", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klagsbrun, Francine", + "fl": "Francine Klagsbrun", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211934", + "isbn": { + "0": "0805211934", + "2": "9780805211931" + }, + "asin": "0805211934", + "ean": ["0805211934"], + "publication": "Schocken (2019), Edition: Reprint, 864 pages", + "date": "2019", + "summary": "Lioness: Golda Meir and the Nation of Israel by Francine Klagsbrun (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.M42 K53" + }, + "awards": ["National Jewish Book Award", + "Plutarch Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "19867914", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "864 p.; 9.7 inches", + "height": "9.7 inches", + "thickness": "1.8 inches", + "length": "6 inches", + "dimensions": "9.7 x 6 x 1.8 inches", + "weight": "2.2 pounds", + "pages": "864 " +}, +"256214043": { + "books_id": "256214043", + "title": "The Yellow Star: The Persecution of the Jews in Europe, 1933-1945", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schoenberner, Gerhard", + "primaryauthorrole": "Author", + "secondaryauthor": "Berenbaum, Michael", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Schoenberner, Gerhard", + "fl": "Gerhard Schoenberner", + "role": "Author" + }, + { + "lf": "Berenbaum, Michael", + "fl": "Michael Berenbaum", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0823223906", + "isbn": { + "0": "0823223906", + "2": "9780823223909" + }, + "asin": "0823223906", + "ean": ["0823223906"], + "publication": "Fordham University Press (2004), Edition: Revised ed., 288 pages", + "date": "2004", + "summary": "The Yellow Star: The Persecution of the Jews in Europe, 1933-1945 by Gerhard Schoenberner (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 S3413" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Pictorial works"]], + "source": "amazon.com books", + "workcode": "1754737", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.; 9.6 x 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "9.6 inches", + "dimensions": "8.5 x 9.6 x 1 inches", + "weight": "2.45 pounds", + "pages": "288 " +}, +"256214082": { + "books_id": "256214082", + "title": "Nehama Leibowitz: New Studies in the Weekly Parasha (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leibowitz, Nehama", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Leibowitz, Nehama", + "fl": "Nehama Leibowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "965524038X", + "isbn": { + "0": "965524038X", + "2": "9789655240382" + }, + "asin": "965524038X", + "ean": ["965524038X"], + "publication": "World Zionist Organization (2010), 1020 pages", + "date": "2010", + "summary": "Nehama Leibowitz: New Studies in the Weekly Parasha (English and Hebrew Edition) by Nehama Leibowitz (2010)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["220"], + "wording": ["Religion", + "The Bible", + "The Bible"] + }, + "lcc": [], + "source": "amazon.com books", + "workcode": "10879314", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "1020 p.; 10 inches", + "height": "10 inches", + "thickness": "7 inches", + "length": "8.75 inches", + "dimensions": "10 x 8.75 x 7 inches", + "weight": "9.8 pounds", + "pages": "1020 " +}, +"256214101": { + "books_id": "256214101", + "title": "Tefillin: An Illustrated Guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neiman, Rabbi Moshe Chanina", + "primaryauthorrole": "Author", + "secondaryauthor": "Oratz, Rabbi Dovid", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Neiman, Rabbi Moshe Chanina", + "fl": "Rabbi Moshe Chanina Neiman", + "role": "Author" + }, + { + "lf": "Oratz, Rabbi Dovid", + "fl": "Rabbi Dovid Oratz", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873067118", + "isbn": { + "0": "0873067118", + "2": "9780873067119" + }, + "asin": "0873067118", + "ean": ["0873067118"], + "publication": "Philipp Feldheim (1995), Edition: First Edition, 144 pages", + "date": "1995", + "summary": "Tefillin: An Illustrated Guide by Rabbi Moshe Chanina Neiman (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "B3236" + }, + "source": "amazon.com books", + "workcode": "8675438", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "144 " +}, +"256214130": { + "books_id": "256214130", + "title": "In my father's court", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BNB9A", + "ean": ["8601422395785"], + "publication": "Farrar, Straus and Giroux (1966), 307 pages", + "date": "1966", + "summary": "In my father's court by Isaac Bashevis Singer (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.49303"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.S572 Z513" + }, + "subject": { + "0": ["Authors, Yiddish", + "20th century", + "Childhood and youth"], + "1": ["Authors, Yiddish", + "Biography"], + "3": ["Jews", + "Biography"], + "5": ["Singer, Isaac Bashevis, 1904-"], + "6": ["Singer, Isaac Bashevis, 1904-1991"], + "7": ["Singer, Isaac Bashevis, 1904-1991", + "Childhood and youth"] + }, + "originaltitle": "\u05d1\u05d9\u05ea \u05d4\u05d3\u05d9\u05df \u05e9\u05dc \u05d0\u05d1\u05d0", + "awards": ["Debbie Clark List of Favorite Books of All Time", + "National Book Award", + "Notable Books List"], + "genre": ["Biography & Memoir"], + "genre_id": ["1240"], + "source": "amazon.com books", + "workcode": "129135", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.", + "weight": "1 pound", + "pages": "307 " +}, +"256214155": { + "books_id": "256214155", + "title": "The modern Jew faces eternal problems", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Barth, Aron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Barth, Aron", + "fl": "Aron Barth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007BZXIG", + "publication": "Religious Section of the Youth and Hechalutz Dept. of the Zionist Organization (1972), 288 pages", + "date": "1972", + "summary": "The modern Jew faces eternal problems by Aron Barth (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.04"], + "wording": ["Essays", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45.B3813" + }, + "source": "amazon.com books", + "workcode": "1611585", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.", + "weight": "1.01 pounds", + "pages": "288 " +}, +"256214167": { + "books_id": "256214167", + "title": "The Family Moskat (Isaac Bashevis Singer: Classic Editions)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bashevis Singer, Isaac", + "primaryauthorrole": "Author", + "secondaryauthor": "Gross, A. H.", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Bashevis Singer, Isaac", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }, + { + "lf": "Gross, A. H.", + "fl": "A. H. Gross", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B09XVKYC8C", + "publication": "Goodreads Press (2022), 804 pages", + "date": "2022", + "summary": "The Family Moskat (Isaac Bashevis Singer: Classic Editions) by Isaac Bashevis Singer (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.493"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.S61657 F" + }, + "subject": { + "0": ["Domestic Fiction"], + "1": ["Domestic fiction"], + "3": ["Jewish families", + "Fiction"], + "5": ["Jewish fiction"], + "7": ["Jews", + "Fiction"] + }, + "originaltitle": "Die Familje Moshkat", + "awards": ["Bancarella", + "Canon de la narrativa universal del siglo XX", + "Harenberg Buch der 1000 B\u00fccher", + "Philip Ward's Lifetime Reading Plan", + "The Guardian 1000 Novels Everyone Must Read", + "Torchlight List"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "76983", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"256214195": { + "books_id": "256214195", + "title": "Shabbat and Electricity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Halperin, L. Y.", + "primaryauthorrole": "Author", + "secondaryauthor": "Oratz, Dovid", + "secondaryauthorroles": "Compiler", + "authors": [{ + "lf": "Halperin, L. Y.", + "fl": "L. Y. Halperin", + "role": "Author" + }, + { + "lf": "Oratz, Dovid", + "fl": "Dovid Oratz", + "role": "Compiler" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873066448", + "isbn": { + "0": "0873066448", + "2": "9780873066440" + }, + "asin": "0873066448", + "ean": ["0873066448"], + "publication": "Feldheim Pub (1993), Edition: First Edition", + "date": "1993", + "summary": "Shabbat and Electricity by L. Y. Halperin (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.41"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice", + "Shabbat"] + }, + "lcc": { + "code": "BM523.T4" + }, + "source": "amazon.com books", + "workcode": "25064915", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "9.5 inches", + "height": "9.5 inches", + "thickness": "0.75 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 0.75 inches", + "weight": "1.7 pounds" +}, +"256214201": { + "books_id": "256214201", + "title": "Studies in the Weekly Parashah: Based on the Lessons of Nehama Leibowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sokolow, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sokolow, Moshe", + "fl": "Moshe Sokolow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9655240045", + "isbn": { + "0": "9655240045", + "2": "9789655240047" + }, + "asin": "9655240045", + "ean": ["9655240045"], + "publication": "Urim Publications (2007), 284 pages", + "date": "2007", + "summary": "Studies in the Weekly Parashah: Based on the Lessons of Nehama Leibowitz by Moshe Sokolow (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220"], + "wording": ["Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2 .S658" + }, + "source": "amazon.com books", + "workcode": "9924391", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "284 p.; 9.1 inches", + "height": "9.0999818 inches", + "thickness": "0.7999984 inches", + "length": "6.7999864 inches", + "dimensions": "9.0999818 x 6.7999864 x 0.7999984 inches", + "weight": "1.41977696728 pounds", + "pages": "284 " +}, +"256214224": { + "books_id": "256214224", + "title": "Judaism and Modern Man: An Interpretation of Jewish Religion (Jewish Lights Classic Reprint)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Herberg, Will", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Herberg, Will", + "fl": "Will Herberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1879045877", + "isbn": { + "0": "1879045877", + "2": "9781879045873" + }, + "asin": "1879045877", + "ean": ["1879045877"], + "publication": "Jewish Lights Pub (1997), Edition: Reprint, 310 pages", + "date": "1997", + "summary": "Judaism and Modern Man: An Interpretation of Jewish Religion (Jewish Lights Classic Reprint) by Will Herberg (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561 .H44" + }, + "subject": { + "0": ["Judaism"], + "2": ["Judaism", + "20th Century"], + "3": ["Judaism", + "20th century"], + "4": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "109686", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "310 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1 inches", + "weight": "1.212542441 pounds", + "pages": "310 " +}, +"256214234": { + "books_id": "256214234", + "title": "Conversations With Isaac Bashevis Singer", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "primaryauthorrole": "Author", + "secondaryauthor": "Burgin, Richard", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }, + { + "lf": "Burgin, Richard", + "fl": "Richard Burgin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385179995", + "isbn": { + "0": "0385179995", + "2": "9780385179997" + }, + "asin": "0385179995", + "ean": ["0385179995"], + "publication": "Doubleday (1985), Edition: First Edition, 178 pages", + "date": "1985", + "summary": "Conversations With Isaac Bashevis Singer by Isaac Bashevis Singer (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.0933"], + "wording": ["-", + "1860-", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5129.S49 Z462" + }, + "subject": { + "0": ["Authors, Yiddish", + "Interviews"], + "2": ["Authors, Yiddish", + "United States", + "Interviews"], + "3": ["Jews", + "Interviews"], + "5": ["Jews", + "United States", + "Interviews"], + "6": ["Singer, Isaac Bashevis, 1904-1991", + "Interviews"] + }, + "source": "amazon.com books", + "workcode": "1106533", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "178 p.", + "height": "8.3 inches", + "thickness": "0.8 inches", + "length": "5.8 inches", + "dimensions": "8.3 x 5.8 x 0.8 inches", + "weight": "1 pound", + "pages": "178 " +}, +"256214267": { + "books_id": "256214267", + "title": "Haven: The Unknown Story of 1,000 World War II Refugees", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gruber, Ruth", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gruber, Ruth", + "fl": "Ruth Gruber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0930395204", + "isbn": { + "0": "0930395204", + "2": "9780930395209" + }, + "asin": "0930395204", + "ean": ["0930395204"], + "publication": "Safe Haven Publishing (1998)", + "date": "1998", + "summary": "Haven: The Unknown Story of 1,000 World War II Refugees by Ruth Gruber (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D809.U5 G78" + }, + "subject": [["Oswego (N.Y.)", + "History"], + ["Refugees", + "United States", + "Biography"], + ["World War, 1939-1945", + "Oswego"], + ["World War, 1939-1945", + "Personal narratives, American"], + ["World War, 1939-1945", + "Refugees"], + ["World War, 1939-1945", + "United States.", + "Civilian relief"], + ["World War, 1939-1945", + "personal narratives, American"]], + "source": "amazon.com books", + "workcode": "944374", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.7 pounds" +}, +"256214303": { + "books_id": "256214303", + "title": "The Hasidic Movement and the Gaon of Vilna", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schochet, Elijah Judah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schochet, Elijah Judah", + "fl": "Elijah Judah Schochet", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568211252", + "isbn": { + "0": "1568211252", + "2": "9781568211251" + }, + "asin": "1568211252", + "ean": ["1568211252"], + "publication": "Jason Aronson, Inc. (1993), Edition: First Edition, 257 pages", + "date": "1993", + "summary": "The Hasidic Movement and the Gaon of Vilna by Elijah Judah Schochet (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.833209033"], + "wording": ["Chasidic", + "Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .S3683" + }, + "source": "amazon.com books", + "workcode": "1882453", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "257 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.25 pounds", + "pages": "257 " +}, +"256214305": { + "books_id": "256214305", + "title": "The Eternal Dissent: A Search for Meaning in Jewish History", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Polish, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Polish, David", + "fl": "David Polish", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CKYER", + "publication": "Abelard Schuman (1961), 228 pages", + "date": "1961", + "summary": "The Eternal Dissent: A Search for Meaning in Jewish History by David Polish (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS119.P6" + }, + "source": "amazon.com books", + "workcode": "2922176", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "228 p.", + "weight": "1 pound", + "pages": "228 " +}, +"256214311": { + "books_id": "256214311", + "title": "The Bluebird of Happiness: The Memoirs of Jan Peerce", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Levy, Alan", + "primaryauthorrole": "Author", + "secondaryauthor": "Peerce, Jan", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Levy, Alan", + "fl": "Alan Levy", + "role": "Author" + }, + { + "lf": "Peerce, Jan", + "fl": "Jan Peerce", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060133112", + "isbn": { + "0": "0060133112", + "2": "9780060133115" + }, + "asin": "0060133112", + "ean": ["0060133112"], + "publication": "HarperCollins (1976), Edition: First Edition, 325 pages", + "date": "1976", + "summary": "The Bluebird of Happiness: The Memoirs of Jan Peerce by Alan Levy (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["782.1"], + "wording": ["Arts & recreation", + "Music", + "Operas and related dramatic vocal forms", + "Vocal music"] + }, + "lcc": { + "code": "ML420.P38 A3" + }, + "source": "amazon.com books", + "workcode": "1503978", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "325 p.", + "height": "9.3 inches", + "thickness": "1.3 inches", + "length": "6.1 inches", + "dimensions": "9.3 x 6.1 x 1.3 inches", + "weight": "0.25 pounds", + "pages": "325 " +}, +"256214312": { + "books_id": "256214312", + "title": "The Art of Jewish Living : The Passover Seder", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wolfson, Ron", + "primaryauthorrole": "Author", + "secondaryauthor": "Grishaver, Joel Lurie", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Wolfson, Ron", + "fl": "Ron Wolfson", + "role": "Author" + }, + { + "lf": "Grishaver, Joel Lurie", + "fl": "Joel Lurie Grishaver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "093566520X", + "isbn": { + "0": "093566520X", + "2": "9780935665208" + }, + "asin": "093566520X", + "ean": ["093566520X"], + "publication": "Jewish Lights Pub (1988), Edition: Workbook, 64 pages", + "date": "1988", + "summary": "The Art of Jewish Living : The Passover Seder by Ron Wolfson (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.P35 W65" + }, + "subject": [["Passover", + "Customs and practices"], + ["Seder"], + ["Spiritual life", + "Judaism"]], + "series": ["The Art of Jewish Living"], + "originaltitle": "The Art of Jewish Living: The Passover Seder", + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "29516", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "64 p.; 11 inches", + "height": "11 inches", + "thickness": "8.5 inches", + "length": "0.25 inches", + "dimensions": "11 x 0.25 x 8.5 inches", + "pages": "64 " +}, +"256214318": { + "books_id": "256214318", + "title": "Pictorial History of the Jewish People, From Bible Times to Our Own Day Throughout the World (Illustrated with 1000 Pictures)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ausubel, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ausubel, Nathan", + "fl": "Nathan Ausubel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0025F072Y", + "publication": "Crown Publishers (1968), Edition: 18th Printing, 346 pages", + "date": "1968", + "summary": "Pictorial History of the Jewish People, From Bible Times to Our Own Day Throughout the World (Illustrated with 1000 Pictures) by Nathan Ausubel (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS118.A8" + }, + "subject": [["Jews", + "History", + "Pictorial works"], + ["Jews", + "Pictorial works"]], + "source": "amazon.com books", + "workcode": "239694", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "346 p.", + "weight": "2.4 pounds", + "pages": "346 " +}, +"256214354": { + "books_id": "256214354", + "title": "Moses Mendelssohn;: A biographical study", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Altmann, Alexander", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Altmann, Alexander", + "fl": "Alexander Altmann", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0817368604", + "isbn": { + "0": "0817368604", + "2": "9780817368609" + }, + "asin": "0817368604", + "ean": ["0817368604"], + "publication": "University of Alabama Press (1973), Edition: First Edition, 900 pages", + "date": "1973", + "summary": "Moses Mendelssohn;: A biographical study by Alexander Altmann (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["193"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of Germany and Austria"] + }, + "lcc": { + "code": "B2693.A64" + }, + "subject": [["Mendelssohn, Moses, 1729-1786"], + ["Philosophers", + "Germany", + "Biography"]], + "source": "amazon.com books", + "workcode": "411448", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "900 p.", + "weight": "0.5070632026 pounds", + "pages": "900 " +}, +"256214371": { + "books_id": "256214371", + "title": "Bris Milah: A Book About the Jewish Ritual of Circumcision", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Romberg, Henry", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Romberg, Henry", + "fl": "Henry Romberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873062906", + "isbn": { + "0": "0873062906", + "2": "9780873062909" + }, + "asin": "0873062906", + "ean": ["0873062906"], + "publication": "Feldheim Pub (1982), Edition: First Edition", + "date": "1982", + "summary": "Bris Milah: A Book About the Jewish Ritual of Circumcision by Henry Romberg (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM705.R56" + }, + "source": "amazon.com books", + "workcode": "9937799", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "0.95 pounds" +}, +"256214383": { + "books_id": "256214383", + "title": "There Once Was a World: A 900-Year Chronicle of the Shtetl of Eishyshok", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eliach, Yaffa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eliach, Yaffa", + "fl": "Yaffa Eliach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316232394", + "isbn": { + "0": "0316232394", + "2": "9780316232395" + }, + "asin": "0316232394", + "ean": ["0316232394"], + "publication": "Back Bay Books (1999), 864 pages", + "date": "1999", + "summary": "There Once Was a World: A 900-Year Chronicle of the Shtetl of Eishyshok by Yaffa Eliach (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.93"], + "wording": ["Baltic States [Formerly, Caucasus Generally]", + "History & geography", + "History of Europe", + "Lithuania", + "Russia and neighboring east European countries"] + }, + "lcc": { + "code": "DS135.L52 E36" + }, + "subject": [["Ei\u0161i\u0161k\u0117s (Lithuania)", + "Ethnic relations"], + ["Ei?si?sk?es (Lithuania)", + "Ethnic relations"], + ["Jews", + "Ei\u0161i\u0161k\u0117s", + "History"], + ["Jews", + "Lithuania", + "Ei?si?sk?es", + "History"]], + "awards": ["National Book Award", + "National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "249470", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "864 p.; 10.25 inches", + "height": "10.25 inches", + "thickness": "1.5 inches", + "length": "7.5 inches", + "dimensions": "10.25 x 7.5 x 1.5 inches", + "weight": "2.9652174239 pounds", + "pages": "864 " +}, +"256214400": { + "books_id": "256214400", + "title": "Sabbatai Sevi: The Mystical Messiah (Bollingen Series, No. 93)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom Gerhard", + "primaryauthorrole": "Author", + "secondaryauthor": "Werblowsky, R. J. Zwi", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Scholem, Gershom Gerhard", + "fl": "Gershom Gerhard Scholem", + "role": "Author" + }, + { + "lf": "Werblowsky, R. J. Zwi", + "fl": "R. J. Zwi Werblowsky", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "069101809X", + "isbn": { + "0": "069101809X", + "2": "9780691018096" + }, + "asin": "069101809X", + "ean": ["069101809X"], + "publication": "Princeton University Press (1976), Edition: First Princeton/Bollingen Paperback Pr., 1030 pages", + "date": "1976", + "summary": "Sabbatai Sevi: The Mystical Messiah (Bollingen Series, No. 93) by Gershom Gerhard Scholem (1976)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM199.S3 S3713" + }, + "subject": { + "0": ["Sabbata?i Zevi, 1626-1676"], + "1": ["Sabbata?isme"], + "2": ["Sabbathaians"], + "4": ["Sabbatianen"], + "5": ["Shabbethai Tzevi, 1626-1676"] + }, + "originaltitle": "Sabbatai Sevi: The Mystical Messiah", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "70770", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1030 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 2 inches", + "weight": "2.8 pounds", + "pages": "1030 " +}, +"256214406": { + "books_id": "256214406", + "title": "Pioneers in Israel: Reflections of the Development of a New Society in the Ancient Land of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dayan, Shmuel", + "primaryauthorrole": "Author", + "secondaryauthor": "Dayan, Yael", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Dayan, Shmuel", + "fl": "Shmuel Dayan", + "role": "Author" + }, + { + "lf": "Dayan, Yael", + "fl": "Yael Dayan", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007E5FMM", + "publication": "World Publishing Company (1961), Edition: First Edition", + "date": "1961", + "summary": "Pioneers in Israel: Reflections of the Development of a New Society in the Ancient Land of Israel by Shmuel Dayan (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.D3 A3" + }, + "source": "amazon.com books", + "workcode": "10786274", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.85 pounds" +}, +"256214438": { + "books_id": "256214438", + "title": "Joseph Had a Little Overcoat", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Taback, Simms", + "primaryauthorrole": "Author", + "secondaryauthor": "Taback, Simms", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Taback, Simms", + "fl": "Simms Taback", + "role": "Author" + }, + { + "lf": "Taback, Simms", + "fl": "Simms Taback", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "014056358X", + "isbn": { + "0": "014056358X", + "2": "9780140563580" + }, + "asin": "014056358X", + "ean": ["014056358X"], + "publication": "Viking Books for Young Readers (2021), 40 pages", + "date": "2021", + "summary": "Joseph Had a Little Overcoat by Simms Taback (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.2"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences"] + }, + "lcc": { + "code": "PZ7.T1115 J" + }, + "subject": { + "0": ["Caldecott Medal"], + "1": ["Clothing and dress", + "Fiction"], + "2": ["Clothing and dress", + "Juvenile fiction"], + "3": ["Coats", + "Fiction"], + "4": ["Coats", + "Folklore"], + "6": ["Coats", + "Juvenile fiction"], + "7": ["Folklore", + "Europe, Eastern"], + "9": ["Jews", + "Folklore"], + "11": ["Toy and movable books"], + "13": ["Toy and movable books", + "Specimens"] + }, + "awards": ["Audie Award", + "Caldecott Medal", + "Kentucky Bluegrass Award", + "NCTE Adventuring with Books: A Booklist for Pre-K\u2014Grade 6", + "National Jewish Book Award", + "Notable Children's Book", + "Pennsylvania Young Reader's Choice Award", + "Red Clover Book Award", + "Sydney Taylor Book Award", + "Texas 2x2 Reading List"], + "genre": ["Children's Books", + "Picture Books"], + "genre_id": ["11", + "138448"], + "source": "amazon.com books", + "workcode": "111146", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "40 p.; 10.56 inches", + "height": "10.56 inches", + "thickness": "0.26 inches", + "length": "8.56 inches", + "dimensions": "10.56 x 8.56 x 0.26 inches", + "weight": "0.61508971098 pounds", + "pages": "40 " +}, +"256214447": { + "books_id": "256214447", + "title": "In Search: An Autobiography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levin, Meyer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levin, Meyer", + "fl": "Meyer Levin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B07ZV3W7Q6", + "publication": "JABberwocky Literary Agency, Inc. (2019), 620 pages", + "date": "2014", + "summary": "In Search: An Autobiography by Meyer Levin (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS125.L4 A3" + }, + "subject": [["Jews", + "Palestine"], + ["Jews", + "Political and social conditions"], + ["Palestine", + "Politics and government"]], + "source": "amazon.com books", + "workcode": "4673688", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"256214461": { + "books_id": "256214461", + "title": "A History of the Marranos 5th Edition", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0872031381", + "isbn": { + "0": "0872031381", + "2": "9780872031388" + }, + "asin": "0872031381", + "ean": ["0872031381"], + "publication": "Sepher-Hermon Press (1974), Edition: 5, 448 pages", + "date": "1974", + "summary": "A History of the Marranos 5th Edition by Cecil Roth (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS124 .R625" + }, + "subject": { + "0": ["Inquisition", + "Spain"], + "2": ["Marranos"], + "4": ["Marranos", + "History"] + }, + "source": "amazon.com books", + "workcode": "748406", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.01 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1.01 inches", + "weight": "1.45 pounds", + "pages": "448 " +}, +"256214463": { + "books_id": "256214463", + "title": "Grow with Gemara: A Hands-On Guide to Building Better Gemara Skills", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Perlmutter, Haim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Perlmutter, Haim", + "fl": "Haim Perlmutter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568713606", + "isbn": { + "0": "1568713606", + "2": "9781568713601" + }, + "asin": "1568713606", + "ean": ["1568713606"], + "publication": "Targum Press (2005), 164 pages", + "date": "2005", + "summary": "Grow with Gemara: A Hands-On Guide to Building Better Gemara Skills by Haim Perlmutter (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM503.6 .P474" + }, + "source": "amazon.com books", + "workcode": "5250264", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "164 p.", + "weight": "0.95 pounds", + "pages": "164 " +}, +"256214475": { + "books_id": "256214475", + "title": "Traveling with the Maggid by Paysach J. Krohn (2007-05-04)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabbi Paysach Krohn", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Paysach Krohn", + "fl": "Rabbi Paysach Krohn", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "142260229X", + "isbn": { + "0": "142260229X", + "2": "9781422602294" + }, + "asin": "142260229X", + "ean": ["142260229X"], + "publication": "Mesorah Publications Ltd. (2007), 216 pages", + "date": "2007", + "summary": "Traveling with the Maggid by Paysach J. Krohn (2007-05-04) by Rabbi Paysach Krohn (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM85.L57 K86" + }, + "source": "amazon.com books", + "workcode": "8385537", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256214494": { + "books_id": "256214494", + "title": "Other People's Trades (English and Italian Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levi, Primo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levi, Primo", + "fl": "Primo Levi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671611496", + "isbn": { + "0": "0671611496", + "2": "9780671611491" + }, + "asin": "0671611496", + "ean": ["0671611496"], + "publication": "Summit Books (1989), Edition: First Edition, 222 pages", + "date": "1989", + "summary": "Other People's Trades (English and Italian Edition) by Primo Levi (1989)", + "language": ["Italian"], + "language_codeA": ["ita"], + "originallanguage": ["Italian"], + "originallanguage_codeA": ["ita"], + "ddc": { + "code": ["854.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "Italian essays", + "Italian, Romanian & related literatures", + "Literature"] + }, + "lcc": { + "code": "PQ4872.E8 A4413" + }, + "subject": [["Levi, Primo, 1919-1987", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "115499", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "222 p.", + "height": "8.4 inches", + "thickness": "0.9 inches", + "length": "5.6 inches", + "dimensions": "8.4 x 5.6 x 0.9 inches", + "weight": "0.95 pounds", + "pages": "222 " +}, +"256214742": { + "books_id": "256214742", + "title": "The Holocaust is Over; We Must Rise From Its Ashes", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Burg, Avraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Burg, Avraham", + "fl": "Avraham Burg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0230607527", + "isbn": { + "0": "0230607527", + "2": "9780230607521" + }, + "asin": "0230607527", + "ean": ["0230607527"], + "publication": "St. Martin's Press (2008), Edition: First Edition, 272 pages", + "date": "2008", + "summary": "The Holocaust is Over; We Must Rise From Its Ashes by Avraham Burg (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS126.B87 A3" + }, + "source": "amazon.com books", + "workcode": "6844904", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "272 p.; 9.6 inches", + "height": "9.5999808 inches", + "thickness": "1.0598404 inches", + "length": "6.4700658 inches", + "dimensions": "9.5999808 x 6.4700658 x 1.0598404 inches", + "weight": "1.07144659332 pounds", + "pages": "272 " +}, +"256214745": { + "books_id": "256214745", + "title": "The Jewish way of life", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Aronson, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Aronson, David", + "fl": "David Aronson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FMD4Y", + "publication": "National Academy for Adult Jewish Studies (1946), Edition: First Edition, 191 pages", + "date": "1946", + "summary": "The Jewish way of life by David Aronson (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.38"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Personal and Social Morality", + "Religion"] + }, + "lcc": { + "code": "BM723 .A7" + }, + "subject": [["Jewish ethics"]], + "source": "amazon.com books", + "workcode": "1104318", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "191 p.", + "weight": "1.01 pounds", + "pages": "191 " +}, +"256214748": { + "books_id": "256214748", + "title": "How the Bible Became a Book: The Textualization of Ancient Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schniedewind, William M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schniedewind, William M.", + "fl": "William M. Schniedewind", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0521536227", + "isbn": { + "0": "0521536227", + "2": "9780521536226" + }, + "asin": "0521536227", + "ean": ["0521536227"], + "publication": "Cambridge University Press (2005), Edition: New Ed, 272 pages", + "date": "2005", + "summary": "How the Bible Became a Book: The Textualization of Ancient Israel by William M. Schniedewind (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.1"], + "wording": ["Origins and authenticity", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS445 .S315" + }, + "subject": [["Bible", + "History"]], + "source": "amazon.com books", + "workcode": "337321", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 9 inches", + "height": "9 inches", + "thickness": "0.68 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.68 inches", + "weight": "0.81130112416 pounds", + "pages": "272 " +}, +"256214840": { + "books_id": "256214840", + "title": "Created Equal: How the Bible Broke with Ancient Political Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berman, Joshua A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berman, Joshua A.", + "fl": "Joshua A. Berman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0199832404", + "isbn": { + "0": "0199832404", + "2": "9780199832408" + }, + "asin": "0199832404", + "ean": ["0199832404"], + "publication": "Oxford University Press (2011), Edition: Reprint, 264 pages", + "date": "2011", + "summary": "Created Equal: How the Bible Broke with Ancient Political Thought by Joshua A. Berman (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.8"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "Special Topics", + "The Bible"] + }, + "lcc": { + "code": "BS1199.E72 B47" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "7568999", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "264 p.; 9.1 inches", + "height": "9.1 inches", + "thickness": "6.1 inches", + "length": "0.6 inches", + "dimensions": "9.1 x 0.6 x 6.1 inches", + "weight": "0.86862131228 pounds", + "pages": "264 " +}, +"256214878": { + "books_id": "256214878", + "title": "Off the Beaten Track in Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dvir, Ori", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dvir, Ori", + "fl": "Ori Dvir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0915361280", + "isbn": { + "0": "0915361280", + "2": "9780915361281" + }, + "asin": "0915361280", + "ean": ["0915361280"], + "publication": "Franklin Watts (1986), 206 pages", + "date": "1986", + "summary": "Off the Beaten Track in Israel by Ori Dvir (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS103 .D9313" + }, + "source": "amazon.com books", + "workcode": "2844891", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "206 p.", + "weight": "2.1 pounds", + "pages": "206 " +}, +"256214892": { + "books_id": "256214892", + "title": "Modern Hebrew Fiction (Hebrew Classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shaked, Gershon", + "primaryauthorrole": "Author", + "secondaryauthor": "Budick, Emily Miller", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Shaked, Gershon", + "fl": "Gershon Shaked", + "role": "Author" + }, + { + "lf": "Budick, Emily Miller", + "fl": "Emily Miller Budick", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0253337119", + "isbn": { + "0": "0253337119", + "2": "9780253337115" + }, + "asin": "1592642241", + "ean": ["1592642241"], + "publication": "The Toby Press (2008), 300 pages", + "date": "2008", + "summary": "Modern Hebrew Fiction (Hebrew Classics) by Gershon Shaked (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5029.S5413" + }, + "source": "amazon.com books", + "workcode": "5304200", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "300 p.; 8.51 inches", + "height": "8.51 inches", + "thickness": "0.71 inches", + "length": "5.81 inches", + "dimensions": "8.51 x 5.81 x 0.71 inches", + "weight": "0.77 pounds", + "pages": "300 " +}, +"256214895": { + "books_id": "256214895", + "title": "How to Read the Bible: A Guide to Scripture, Then and Now", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kugel, James L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kugel, James L.", + "fl": "James L. Kugel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0743235878", + "isbn": { + "0": "0743235878", + "2": "9780743235877" + }, + "asin": "0743235878", + "ean": ["0743235878"], + "publication": "Free Press (2008), Edition: Reprint, 848 pages", + "date": "2008", + "summary": "How to Read the Bible: A Guide to Scripture, Then and Now by James L. Kugel (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1171 .K84" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "awards": ["National Jewish Book Award", + "Publishers Weekly's Best Books of the Year", + "The New York Times Notable Books of the Year"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "3442768", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "848 p.; 9 inches", + "height": "9 inches", + "thickness": "1.6 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.6 inches", + "weight": "2.22 pounds", + "pages": "848 " +}, +"256215078": { + "books_id": "256215078", + "title": "The Literary Guide to the Bible", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Alter, Robert", + "primaryauthorrole": "Editor", + "secondaryauthor": "Kermode, Frank", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Alter, Robert", + "fl": "Robert Alter", + "role": "Editor" + }, + { + "lf": "Kermode, Frank", + "fl": "Frank Kermode", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674875311", + "isbn": { + "0": "0674875311", + "2": "9780674875319" + }, + "asin": "0674875311", + "ean": ["0674875311"], + "publication": "Belknap Press: An Imprint of Harvard University Press (1990), 696 pages", + "date": "1990", + "summary": "The Literary Guide to the Bible by Robert Alter (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["809.93522"], + "wording": ["Bible As Literature", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature displaying other aspects", + "Literature displaying specific features, miscellaneous writings", + "Literature emphasizing subjects", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "BS535 .L54" + }, + "subject": [["Bible", + "Criticism, interpretation, etc"], + ["Bible as literature"]], + "originaltitle": "The Literary Guide to the Bible", + "genre": ["Fiction", + "Nonfiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["17160326", + "20275895", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "9772", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "696 p.; 10 inches", + "height": "10 inches", + "thickness": "1.25 inches", + "length": "6.75 inches", + "dimensions": "10 x 6.75 x 1.25 inches", + "weight": "2.19139488428 pounds", + "pages": "696 " +}, +"256215141": { + "books_id": "256215141", + "title": "Twenty-One Stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Agnon, S. Y.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agnon, S. Y.", + "fl": "S. Y. Agnon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JNK4M2", + "publication": "Gollancz (1970), Edition: 2nd printing, 287 pages", + "date": "1970", + "summary": "Twenty-One Stories by S. Y. Agnon (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.A2733 PJ5053 .A4" + }, + "subject": { + "0": ["Agnon, Shmuel Yosef, 1888-1970", + "Translations into English"], + "1": ["Jewish fiction"], + "3": ["Jews", + "Fiction"] + }, + "awards": ["Harold Bloom's Western Canon"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "249475", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "287 p.", + "weight": "1.05 pounds", + "pages": "287 " +}, +"256215144": { + "books_id": "256215144", + "title": "To Study and to Teach: The Methodology of Nechama Leibowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peerless, Shmuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peerless, Shmuel", + "fl": "Shmuel Peerless", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B088ML79N4", + "publication": "Urim Publications (2020), 183 pages", + "date": "2020", + "summary": "To Study and to Teach: The Methodology of Nechama Leibowitz by Shmuel Peerless (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200"], + "wording": ["Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "BS1161.L45 .P447" + }, + "source": "amazon.com books", + "workcode": "1646528", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"256215145": { + "books_id": "256215145", + "title": "Health and Medicine in the Jewish Tradition: L'Hayyim--To Life (Health/Medicine and the Faith Traditions) by David M. Fledman (1986-01-03)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "David M. Fledman;", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "David M. Fledman;", + "fl": "David M. Fledman;", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01FGNGARC", + "publication": "Crossroad Pub Co", + "summary": "Health and Medicine in the Jewish Tradition: L'Hayyim--To Life (Health/Medicine and the Faith Traditions) by David M. Fledman (1986-01-03) by David M. Fledman;", + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM538.H43 F44" + }, + "source": "amazon.com books", + "workcode": "7466885", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215146": { + "books_id": "256215146", + "title": "The Literature of Destruction: Jewish Responses to Catastrophe", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roskies, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roskies, David", + "fl": "David Roskies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827604149", + "isbn": { + "0": "0827604149", + "2": "9780827604148" + }, + "asin": "0827604149", + "ean": ["0827604149"], + "publication": "JEWISH PUBLICATON SOCIETY (1989), Edition: Reprint, 668 pages", + "date": "1989", + "summary": "The Literature of Destruction: Jewish Responses to Catastrophe by David Roskies (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS102 .L54" + }, + "source": "amazon.com books", + "workcode": "314847", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "668 p.; 9.96 inches", + "height": "9.96 inches", + "thickness": "1.79 inches", + "length": "6.92 inches", + "dimensions": "9.96 x 6.92 x 1.79 inches", + "weight": "2.8880556322 pounds", + "pages": "668 " +}, +"256215150": { + "books_id": "256215150", + "title": "Yiddishkeit: Jewish Vernacular and the New Land", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pekar, Harvey", + "primaryauthorrole": "Editor", + "secondaryauthor": "Kuper, Peter|Buhle, Paul|Rudahl, Sharon|Gabler, Neal|Rodriguez, Spain|Lasky, David|Deutsch, Barry", + "secondaryauthorroles": "Contributor|Editor|Contributor|Introduction|Contributor|Contributor|Contributor", + "authors": [{ + "lf": "Pekar, Harvey", + "fl": "Harvey Pekar", + "role": "Editor" + }, + { + "lf": "Kuper, Peter", + "fl": "Peter Kuper", + "role": "Contributor" + }, + { + "lf": "Buhle, Paul", + "fl": "Paul Buhle", + "role": "Editor" + }, + { + "lf": "Rudahl, Sharon", + "fl": "Sharon Rudahl", + "role": "Contributor" + }, + { + "lf": "Gabler, Neal", + "fl": "Neal Gabler", + "role": "Introduction" + }, + { + "lf": "Rodriguez, Spain", + "fl": "Spain Rodriguez", + "role": "Contributor" + }, + { + "lf": "Lasky, David", + "fl": "David Lasky", + "role": "Contributor" + }, + { + "lf": "Deutsch, Barry", + "fl": "Barry Deutsch", + "role": "Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0810997495", + "isbn": { + "0": "0810997495", + "2": "9780810997493" + }, + "asin": "0810997495", + "ean": ["0810997495"], + "publication": "Harry N. Abrams (2011), Edition: Bilingual, 240 pages", + "date": "2011", + "summary": "Yiddishkeit: Jewish Vernacular and the New Land by Harvey Pekar (2011)", + "language": ["Yiddish", + "English"], + "language_codeA": ["yid", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["yid", + "eng"], + "ddc": { + "code": ["839.109973"], + "wording": ["German & related literatures", + "History and criticism of Low German literature", + "Literature", + "Low German literature", + "Other Germanic literatures", + "Yiddish literature"] + }, + "lcc": { + "code": "PJ5125 .Y527" + }, + "source": "amazon.com books", + "workcode": "11615955", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 10.5 inches", + "height": "10.5 inches", + "thickness": "1 inch", + "length": "7.25 inches", + "dimensions": "10.5 x 7.25 x 1 inches", + "weight": "1.9 pounds", + "pages": "240 " +}, +"256215188": { + "books_id": "256215188", + "title": "Against the Apocalypse: Responses to Catastrophe in Modern Jewish Culture (Judaic Traditions in Literature, Music, & Art (Paperback))", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roskies, David G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roskies, David G.", + "fl": "David G. Roskies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081560615X", + "isbn": { + "0": "081560615X", + "2": "9780815606154" + }, + "asin": "081560615X", + "ean": ["081560615X"], + "publication": "Syracuse University Press (1999), 388 pages", + "date": "1999", + "summary": "Against the Apocalypse: Responses to Catastrophe in Modern Jewish Culture (Judaic Traditions in Literature, Music, & Art (Paperback)) by David G. Roskies (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5120 .R67" + }, + "subject": { + "0": ["Hebrew literature, Modern", + "History and criticism"], + "2": ["Holocaust, Jewish (1939-1945), in literature"], + "4": ["Jews", + "Europe, Eastern.", + "Persecutions"], + "5": ["Jews", + "Persecutions", + "Europe, Eastern"], + "6": ["Jews in literature"], + "8": ["Yiddish literature", + "History and criticism"] + }, + "awards": ["Ralph Waldo Emerson Award"], + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "2378803", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "388 p.; 9 inches", + "height": "9 inches", + "thickness": "0.9 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.9 inches", + "weight": "1.25002102554 pounds", + "pages": "388 " +}, +"256215192": { + "books_id": "256215192", + "title": "We Are All Close: Conversations with Israeli Writers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chertok, Haim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chertok, Haim", + "fl": "Haim Chertok", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0823212238", + "isbn": { + "0": "0823212238", + "2": "9780823212231" + }, + "asin": "0823212238", + "ean": ["0823212238"], + "publication": "Fordham University Press (1989), Edition: 1, 265 pages", + "date": "1989", + "summary": "We Are All Close: Conversations with Israeli Writers by Haim Chertok (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "HN660.A8 C48" + }, + "source": "amazon.com books", + "workcode": "7658076", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "265 p.; 9.1 x 5.8 inches", + "height": "5.8 inches", + "thickness": "1.2 inches", + "length": "9.1 inches", + "dimensions": "5.8 x 9.1 x 1.2 inches", + "weight": "1.5 pounds", + "pages": "265 " +}, +"256215201": { + "books_id": "256215201", + "title": "Not As a Lamb: The Jews Against Hitler.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Lucien.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinberg, Lucien.", + "fl": "Lucien. Steinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0347000037", + "isbn": { + "0": "0347000037", + "2": "9780347000031" + }, + "asin": "0347000037", + "ean": ["0347000037"], + "publication": "[Farnborough, Eng.] Saxon House (1974), Edition: First Edition, 384 pages", + "date": "1974", + "summary": "Not As a Lamb: The Jews Against Hitler. by Lucien. Steinberg (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 S7613" + }, + "source": "amazon.com books", + "workcode": "4753649", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "384 p.", + "weight": "0.000625 pounds", + "pages": "384 " +}, +"256215222": { + "books_id": "256215222", + "title": "Rare Jacob Neusner / Talmudic Thinking Language Logic Law 1st Edition 1992 - University of South Carolina Press [Hardcover] Jacob Neusner", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0BRNTP77T", + "publication": "Generic (1992), 233 pages", + "date": "1992", + "summary": "Rare Jacob Neusner / Talmudic Thinking Language Logic Law 1st Edition 1992 - University of South Carolina Press [Hardcover] Jacob Neusner by Jacob Neusner (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.2"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504.2 .N52" + }, + "source": "amazon.com books", + "workcode": "1506544", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215261": { + "books_id": "256215261", + "title": "From Time Immemorial: The Origins of the Arab-Jewish Conflict over Palestine", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peters, Joan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peters, Joan", + "fl": "Joan Peters", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0963624202", + "isbn": { + "0": "0963624202", + "2": "9780963624208" + }, + "asin": "0963624202", + "ean": ["0963624202"], + "publication": "JKAP Publications (2001), 622 pages", + "date": "2001", + "summary": "From Time Immemorial: The Origins of the Arab-Jewish Conflict over Palestine by Joan Peters (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.5694"], + "wording": ["Asia", + "International migration and colonization", + "Israel/Palestine", + "Middle East", + "Political science", + "Social sciences", + "The Levant"] + }, + "lcc": { + "code": "JV8749.P3 P47" + }, + "subject": { + "0": ["Jewish-Arab relations", + "History"], + "1": ["Jewish-Arab relations", + "History", + "1917-1948"], + "2": ["Jews", + "Arab countries"], + "4": ["Palestine", + "Emigration and immigration"], + "6": ["Palestinian Arabs"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "68771", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "622 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.5 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1.5 inches", + "weight": "1.23 pounds", + "pages": "622 " +}, +"256215274": { + "books_id": "256215274", + "title": "Of Pure Blood", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Henry, Clarissa", + "primaryauthorrole": "Author", + "secondaryauthor": "Hillel, Marc|Mossbacher, Eric", + "secondaryauthorroles": "Author|Translator", + "authors": [{ + "lf": "Henry, Clarissa", + "fl": "Clarissa Henry", + "role": "Author" + }, + { + "lf": "Hillel, Marc", + "fl": "Marc Hillel", + "role": "Author" + }, + { + "lf": "Mossbacher, Eric", + "fl": "Eric Mossbacher", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "007028895X", + "isbn": { + "0": "007028895X", + "2": "9780070288959" + }, + "asin": "007028895X", + "ean": ["007028895X"], + "publication": "McGraw-Hill (1976), 256 pages", + "date": "1976", + "summary": "Of Pure Blood by Clarissa Henry (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.W7 H513" + }, + "subject": [["Children", + "Germany"], + ["Eugenics"], + ["Germany", + "Race relations"], + ["Women", + "Germany"], + ["World War, 1939-1945", + "Atrocities"], + ["World War, 1939-1945", + "Germany.", + "Children"], + ["World War, 1939-1945", + "Germany.", + "Women"]], + "source": "amazon.com books", + "workcode": "380877", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.", + "height": "9.1 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9.1 x 6 x 1 inches", + "weight": "1.25 pounds", + "pages": "256 " +}, +"256215284": { + "books_id": "256215284", + "title": "Diaspora: An Inquiry into the Contemporary Jewish World", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sachar, Howard Morley", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard Morley", + "fl": "Howard Morley Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780060154035", + "isbn": ["9780060154035", + "0060154039"], + "asin": "0060154039", + "ean": ["0060154039"], + "publication": "Harpercollins (1985), Edition: First Edition, 539 pages", + "date": "1985", + "summary": "Diaspora: An Inquiry into the Contemporary Jewish World by Howard Morley Sachar (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS134 .S22" + }, + "subject": { + "0": ["Jewish diaspora"], + "2": ["Jews", + "History"], + "3": ["Jews", + "History", + "1945-"], + "4": ["Jews", + "history"] + }, + "source": "amazon.com books", + "workcode": "2439280", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "539 p.", + "height": "9.1 inches", + "thickness": "1.8 inches", + "length": "6.4 inches", + "dimensions": "9.1 x 6.4 x 1.8 inches", + "weight": "3 pounds", + "pages": "539 " +}, +"256215294": { + "books_id": "256215294", + "title": "To Study and to Teach: The Methodology of Nechama Leibowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peerless, Shmuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Peerless, Shmuel", + "fl": "Shmuel Peerless", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B088ML79N4", + "publication": "Urim Publications (2020), 183 pages", + "date": "2020", + "summary": "To Study and to Teach: The Methodology of Nechama Leibowitz by Shmuel Peerless (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200"], + "wording": ["Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "BS1161.L45 .P447" + }, + "source": "amazon.com books", + "workcode": "1646528", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"256215301": { + "books_id": "256215301", + "title": "The Gold of Exodus", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Blum, Howard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Blum, Howard", + "fl": "Howard Blum", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684809184", + "isbn": { + "0": "0684809184", + "2": "9780684809182" + }, + "asin": "0684809184", + "ean": ["0684809184"], + "publication": "Simon & Schuster (1998), 368 pages", + "date": "1998", + "summary": "The Gold of Exodus by Howard Blum (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.05"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS63 .B59" + }, + "subject": [["Espionage", + "Israel"], + ["Middle East", + "Politics and government", + "1979-"], + ["Saudi Arabia", + "Antiquities"], + ["Saudi Arabia", + "Defenses"]], + "source": "amazon.com books", + "workcode": "485677", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.; 10 inches", + "height": "10 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "10 x 6.5 x 1.25 inches", + "weight": "1.25 pounds", + "pages": "368 " +}, +"256215347": { + "books_id": "256215347", + "title": "The Forest, My Friend", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosen, Donia", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosen, Donia", + "fl": "Donia Rosen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0069V6BKM", + "publication": "See Description (1971), Edition: First Edition", + "date": "1971", + "summary": "The Forest, My Friend by Donia Rosen (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.531"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 R657" + }, + "source": "amazon.com books", + "workcode": "25771875", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215358": { + "books_id": "256215358", + "title": "The Slave", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "primaryauthorrole": "Author", + "secondaryauthor": "Hemley, Cecil", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }, + { + "lf": "Hemley, Cecil", + "fl": "Cecil Hemley", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374506809", + "isbn": { + "0": "0374506809", + "2": "9780374506803" + }, + "asin": "0374506809", + "ean": ["0374506809"], + "publication": "Farrar, Straus and Giroux (1988), 320 pages", + "date": "1988", + "summary": "The Slave by Isaac Bashevis Singer (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.133"], + "wording": ["1860-1945", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish literature"] + }, + "lcc": { + "code": "PZ3.S61657 S" + }, + "subject": { + "0": ["American fiction", + "20th century", + "Translated from Yiddish"], + "1": ["Jewish fiction"], + "3": ["Jews", + "Fiction"], + "5": ["Yiddish fiction"], + "6": ["Yiddish fiction", + "20th century", + "Translations into English"] + }, + "awards": ["Audie Award", + "National Jewish Book Award", + "Nobel Prize in Literature", + "Notable Books List", + "Torchlight List"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "85831", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 8.28 inches", + "height": "8.2799047 inches", + "thickness": "0.84 inches", + "length": "5.6098313 inches", + "dimensions": "8.2799047 x 5.6098313 x 0.84 inches", + "weight": "0.80027801106 pounds", + "pages": "320 " +}, +"256215384": { + "books_id": "256215384", + "title": "Between the Rhine and the Bosporus: Studies and essays in European Jewish history,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shulvass, Moses A", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shulvass, Moses A", + "fl": "Moses A Shulvass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DV84C", + "publication": "College of Jewish Studies Press (1964), Edition: First Edition, 210 pages", + "date": "1964", + "summary": "Between the Rhine and the Bosporus: Studies and essays in European Jewish history, by Moses A Shulvass (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.25693094"], + "wording": ["Asian Emigration", + "Emigration and Refugees ", + "International migration and colonization", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DS135.E8 S5" + }, + "source": "amazon.com books", + "workcode": "4088942", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215401": { + "books_id": "256215401", + "title": "On the Possibility of Jewish Mysticism in Our Time", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Scholem, Gershom S", + "fl": "Gershom S Scholem", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760579X", + "isbn": { + "0": "082760579X", + "2": "9780827605794" + }, + "asin": "082760579X", + "ean": ["082760579X"], + "publication": "JEWISH PUBLICATON SOCIETY (1997), Edition: First Edition, 268 pages", + "date": "1997", + "summary": "On the Possibility of Jewish Mysticism in Our Time by Gershom S Scholem (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .S44132" + }, + "source": "amazon.com books", + "workcode": "2332447", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "268 p.; 9.32 inches", + "height": "9.32 inches", + "thickness": "0.78 inches", + "length": "6.31 inches", + "dimensions": "9.32 x 6.31 x 0.78 inches", + "weight": "1.07 pounds", + "pages": "268 " +}, +"256215408": { + "books_id": "256215408", + "title": "The Rise and Fall of the Third Reich: A History of Nazi Germany", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shirer, William L.", + "primaryauthorrole": "Author", + "secondaryauthor": "Rosenbaum, Ron", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Shirer, William L.", + "fl": "William L. Shirer", + "role": "Author" + }, + { + "lf": "Rosenbaum, Ron", + "fl": "Ron Rosenbaum", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1451651686", + "isbn": { + "0": "1451651686", + "2": "9781451651683" + }, + "asin": "1451651686", + "ean": ["8580001075228"], + "publication": "Simon & Schuster (2011), Edition: Reissue, 1280 pages", + "date": "2011", + "summary": "The Rise and Fall of the Third Reich: A History of Nazi Germany by William L. Shirer (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "DD256.S48" + }, + "subject": { + "0": ["Concentration camps", + "Europe"], + "1": ["Germany", + "History", + "1933-1945"], + "3": ["Germany", + "Politics and government", + "1933-1945"], + "4": ["Hitler, Adolf, 1889-1945"], + "5": ["National Socialism"], + "7": ["National socialism"], + "9": ["World War, 1939-1945", + "Germany"], + "10": ["World war, 1939-1945", + "Germany"] + }, + "originaltitle": "The Rise and Fall of the Third Reich", + "awards": ["Hillman Prize", + "National Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "3038", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1280 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2.4 inches", + "length": "6.125 inches", + "dimensions": "9.25 x 6.125 x 2.4 inches", + "weight": "2.71609506784 pounds", + "pages": "1280 " +}, +"256215446": { + "books_id": "256215446", + "title": "Rare Jacob Neusner / Talmudic Thinking Language Logic Law 1st Edition 1992 - University of South Carolina Press [Hardcover] Jacob Neusner", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0BRNTP77T", + "publication": "Generic (1992), 233 pages", + "date": "1992", + "summary": "Rare Jacob Neusner / Talmudic Thinking Language Logic Law 1st Edition 1992 - University of South Carolina Press [Hardcover] Jacob Neusner by Jacob Neusner (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.2"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504.2 .N52" + }, + "source": "amazon.com books", + "workcode": "1506544", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215452": { + "books_id": "256215452", + "title": "A Tower from the Enemy: Contributions to a History of Jewish Resistance in Poland", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Nirenstein, Albert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nirenstein, Albert", + "fl": "Albert Nirenstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000FCI1ZY", + "publication": "Orion Press (1959), Edition: Not Stated", + "date": "1959", + "summary": "A Tower from the Enemy: Contributions to a History of Jewish Resistance in Poland by Albert Nirenstein (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53438"], + "wording": ["1918-", + "Europe", + "Germany; Austria; Czechoslovakia; Poland; Hungary", + "History & geography", + "History of Europe", + "History of Europe", + "Poland", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 N513" + }, + "source": "amazon.com books", + "workcode": "7720259", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215501": { + "books_id": "256215501", + "title": "The Last of the Just", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schwarz-Bart, André", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schwarz-Bart, André", + "fl": "André Schwarz-Bart", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1585670162", + "isbn": { + "0": "1585670162", + "2": "9781585670161" + }, + "asin": "1585670162", + "ean": ["1585670162"], + "publication": "Harry N. Abrams (2000), Edition: First Edition, 374 pages", + "date": "2000", + "summary": "The Last of the Just by André Schwarz-Bart (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["843.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "French & related literatures", + "French fiction", + "Literature"] + }, + "lcc": { + "code": "PQ2637.C736 D413" + }, + "subject": [["France", + "Fiction"]], + "originaltitle": "Le dernier des Justes", + "awards": ["1000 Books to Read Before You Die", + "Bancarella", + "Daily Telegraph's 100 Books of the Century, 1900-1999", + "New York Times bestseller", + "Notable Books List", + "Prix Goncourt"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "29477", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "374 p.; 8 inches", + "height": "8 inches", + "thickness": "1.2 inches", + "length": "5.45 inches", + "dimensions": "8 x 5.45 x 1.2 inches", + "weight": "1.00089866948 pounds", + "pages": "374 " +}, +"256215525": { + "books_id": "256215525", + "title": "How to Read the Jewish Bible by Marc Zvi Brettler (May 01,2007)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brettler, Marc Zvi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brettler, Marc Zvi", + "fl": "Marc Zvi Brettler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B015X5A5OM", + "publication": "Oxford University Press (May 01,2007)", + "summary": "How to Read the Jewish Bible by Marc Zvi Brettler (May 01,2007) by Marc Zvi Brettler", + "language": ["English (Middle)"], + "language_codeA": ["enm"], + "originallanguage": ["English"], + "originallanguage_codeA": ["enm", + "eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1171 .B74" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "source": "amazon.com books", + "workcode": "106655", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"256215536": { + "books_id": "256215536", + "title": "The Racial Thinking of Richard Wagner", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Stein, Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stein, Leon", + "fl": "Leon Stein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DPAYG", + "publication": "Philosophical Library (1950), Edition: First Edition, 252 pages", + "date": "1950", + "summary": "The Racial Thinking of Richard Wagner by Leon Stein (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "ML410.W19 S83" + }, + "source": "amazon.com books", + "workcode": "5056306", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "252 p.", + "weight": "1 pound", + "pages": "252 " +}, +"256215561": { + "books_id": "256215561", + "title": "Essays in Jewish biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Marx, Alexander", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Marx, Alexander", + "fl": "Alexander Marx", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007HC3FG", + "publication": "The Jewish Publication Society of America, 5708-1947 (1948), Edition: First Edition, 298 pages", + "date": "1948", + "summary": "Essays in Jewish biography by Alexander Marx (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["910.039"], + "wording": ["Geography & travel", + "History & geography", + "modified standard subdivisions of Geography and travel"] + }, + "lcc": { + "code": "DS115.M3" + }, + "subject": [["Jewish scholars", + "Biography"], + ["Jews", + "Biography"], + ["Rabbis", + "Biographies"]], + "source": "amazon.com books", + "workcode": "3663216", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256215570": { + "books_id": "256215570", + "title": "Recovered Roots: Collective Memory and the Making of Israeli National Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zerubavel, Yael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zerubavel, Yael", + "fl": "Yael Zerubavel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226817741", + "isbn": { + "0": "0226817741", + "2": "9780226817743" + }, + "asin": "0226981584", + "ean": ["0226981584"], + "publication": "University of Chicago Press (1997), Edition: 1, 360 pages", + "date": "1997", + "summary": "Recovered Roots: Collective Memory and the Making of Israeli National Tradition by Yael Zerubavel (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115 .Z47" + }, + "subject": [["Jews", + "Historiography"], + ["Jews", + "History", + "Bar Kokhba Rebellion, 132-135"], + ["Masada Site (Israel)", + "Siege, 72-73"], + ["Memory", + "Social aspects", + "Israel"], + ["National characteristics, Israeli"], + ["Tel ?Hai (Israel)", + "History"], + ["Zionism", + "Philosophy"]], + "source": "amazon.com books", + "workcode": "1090914", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "360 p.; 9 x 0.83 inches", + "height": "0.83 inches", + "thickness": "5.92 inches", + "length": "9 inches", + "dimensions": "0.83 x 9 x 5.92 inches", + "weight": "1.26986262912 pounds", + "pages": "360 " +}, +"256215587": { + "books_id": "256215587", + "title": "The Jews of Chicago: Fron Shtetl to Suburb (Ethnic History of Chicago)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cutler, Irving", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cutler, Irving", + "fl": "Irving Cutler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0252021851", + "isbn": { + "0": "0252021851", + "2": "9780252021855" + }, + "asin": "0252021851", + "ean": ["0252021851"], + "publication": "University of Illinois Press (1996), Edition: First Edition, 336 pages", + "date": "1996", + "summary": "The Jews of Chicago: Fron Shtetl to Suburb (Ethnic History of Chicago) by Irving Cutler (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["977.3"], + "wording": ["History & geography", + "History of North America", + "Illinois", + "North central United States"] + }, + "lcc": { + "code": "F548.J5 C87" + }, + "subject": { + "0": ["Chicago (Ill.)", + "Ethnic relations"], + "2": ["Jews", + "Chicago", + "History"], + "3": ["Jews", + "Illinois", + "Chicago", + "History"] + }, + "source": "amazon.com books", + "workcode": "762109", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "336 p.; 11 inches", + "height": "11 inches", + "thickness": "1.2 inches", + "length": "7.75 inches", + "dimensions": "11 x 7.75 x 1.2 inches", + "weight": "2.0723452628 pounds", + "pages": "336 " +}, +"256215637": { + "books_id": "256215637", + "title": "The Bridal Canopy", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Agnon, S Y", + "primaryauthorrole": "Author", + "secondaryauthor": "Lask, I M", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Agnon, S Y", + "fl": "S Y Agnon", + "role": "Author" + }, + { + "lf": "Lask, I M", + "fl": "I M Lask", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781592643547", + "isbn": ["9781592643547", + "159264354X"], + "asin": "159264354X", + "ean": ["159264354X"], + "publication": "Toby Press (2015), Edition: Reissue, 421 pages", + "date": "2015", + "summary": "The Bridal Canopy by S Y Agnon (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.435"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.A2733 B" + }, + "source": "amazon.com books", + "workcode": "467916", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "421 p.; 8.4 inches", + "height": "8.4 inches", + "thickness": "1.1 inches", + "length": "5.5 inches", + "dimensions": "8.4 x 5.5 x 1.1 inches", + "weight": "1.15 pounds", + "pages": "421 " +}, +"256215681": { + "books_id": "256215681", + "title": "Thorny Path and Other Stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dvora Baron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dvora Baron", + "fl": "Dvora Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000X8C4SA", + "publication": "Israel Universities Press (1969), Edition: First Edition, 273 pages", + "date": "1969", + "summary": "Thorny Path and Other Stories by Dvora Baron (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "12856596", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "273 p.", + "weight": "1.38 pounds", + "pages": "273 " +}, +"256215704": { + "books_id": "256215704", + "title": "The Miracle of Intervale Avenue: The Story of a Jewish Congregation in the South Bronx", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kugelmass, Jack", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kugelmass, Jack", + "fl": "Jack Kugelmass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805240101", + "isbn": { + "0": "0805240101", + "2": "9780805240108" + }, + "asin": "0805240101", + "ean": ["0805240101"], + "publication": "Schocken Books (1986), Edition: First Edition, 231 pages", + "date": "1986", + "summary": "The Miracle of Intervale Avenue: The Story of a Jewish Congregation in the South Bronx by Jack Kugelmass (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM225.N5 I575" + }, + "subject": [["Bronx (New York, N.Y.)"], + ["Intervale Jewish Center (Bronx, New York, N.Y.)"], + ["Jews", + "New York (State)", + "New York", + "Social conditions"], + ["Religious institutions", + "New York (State)", + "New York"]], + "source": "amazon.com books", + "workcode": "546458", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "231 p.", + "weight": "1.0912881969 pounds", + "pages": "231 " +}, +"256215706": { + "books_id": "256215706", + "title": "The Rise and Fall of the Judean State", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zeitlin, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zeitlin, Solomon", + "fl": "Solomon Zeitlin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000HEGLUW", + "publication": "Jewish Publication Society (1962), Edition: First Edition", + "date": "1962", + "summary": "The Rise and Fall of the Judean State by Solomon Zeitlin (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.Z43" + }, + "source": "amazon.com books", + "workcode": "2637575", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.7 pounds" +}, +"256215731": { + "books_id": "256215731", + "title": "Whither", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feierberg, M Z", + "primaryauthorrole": "Author", + "secondaryauthor": "Feuerberg, Mordecai Ze'ev", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Feierberg, M Z", + "fl": "M Z Feierberg", + "role": "Author" + }, + { + "lf": "Feuerberg, Mordecai Ze'ev", + "fl": "Mordecai Ze'ev Feuerberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592640680", + "isbn": { + "0": "1592640680", + "2": "9781592640683" + }, + "asin": "1592640680", + "ean": ["1592640680"], + "publication": "Toby Press (2004), 155 pages", + "date": "2004", + "summary": "Whither by M Z Feierberg (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.F4 W55" + }, + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "6095846", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "155 p.; 8.46 inches", + "height": "8.46 inches", + "thickness": "0.58 inches", + "length": "5.62 inches", + "dimensions": "8.46 x 5.62 x 0.58 inches", + "weight": "0.57 pounds", + "pages": "155 " +}, +"256215736": { + "books_id": "256215736", + "title": "The Rise and Fall of the Judaean State: A Political, Social and Religious History of the Second Commonwealth , Vol. 3 - 66 C.E.-120 C.E.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zeitlin, Solomon", + "primaryauthorrole": "Author", + "secondaryauthor": "Hoenig, Sidney B.", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Zeitlin, Solomon", + "fl": "Solomon Zeitlin", + "role": "Author" + }, + { + "lf": "Hoenig, Sidney B.", + "fl": "Sidney B. Hoenig", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600941", + "isbn": { + "0": "0827600941", + "2": "9780827600942" + }, + "asin": "0827600941", + "ean": ["0827600941"], + "publication": "University of Nebraska Press (1978), Edition: First Edition, 527 pages", + "date": "1978", + "summary": "The Rise and Fall of the Judaean State: A Political, Social and Religious History of the Second Commonwealth , Vol. 3 - 66 C.E.-120 C.E. by Solomon Zeitlin (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.Z43" + }, + "source": "amazon.com books", + "workcode": "2637575", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "527 p.", + "weight": "1 pound", + "pages": "527 " +}, +"256215750": { + "books_id": "256215750", + "title": "Voices of Israel: Essays on and Interviews with Yehuda Amichai, A. B. Yehoshua, T. Carmi, Aharon Appelfeld, and Amos Oz (Suny Modern Jewish Literature and Culture)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Joseph", + "fl": "Joseph Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791402444", + "isbn": { + "0": "0791402444", + "2": "9780791402443" + }, + "asin": "0791402444", + "ean": ["0791402444"], + "publication": "State University of New York Press (1990), 231 pages", + "date": "1990", + "summary": "Voices of Israel: Essays on and Interviews with Yehuda Amichai, A. B. Yehoshua, T. Carmi, Aharon Appelfeld, and Amos Oz (Suny Modern Jewish Literature and Culture) by Joseph Cohen (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5014" + }, + "source": "amazon.com books", + "workcode": "4566678", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "231 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "0.50044933474 pounds", + "pages": "231 " +}, +"256215778": { + "books_id": "256215778", + "title": "Major Noah: American-Jewish Pioneer", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldberg, Isaac 1887-1938", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldberg, Isaac 1887-1938", + "fl": "Isaac 1887-1938 Goldberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1014637996", + "isbn": { + "0": "1014637996", + "2": "9781014637994" + }, + "asin": "1014637996", + "ean": ["1014637996"], + "publication": "Hassell Street Press (2021), 352 pages", + "date": "2021", + "summary": "Major Noah: American-Jewish Pioneer by Isaac 1887-1938 Goldberg (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["928.1"], + "wording": ["American writers", + "Biography & genealogy", + "History & geography", + "People in literature, history, biography, genealogy"] + }, + "lcc": { + "code": "E335.N715" + }, + "source": "amazon.com books", + "workcode": "7736110", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.73 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.73 inches", + "weight": "1.09 pounds", + "pages": "352 " +}, +"256215781": { + "books_id": "256215781", + "title": "Saving Remnants: Feeling Jewish in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bershtel, Sara", + "primaryauthorrole": "Author", + "secondaryauthor": "Graubard, Allen", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Bershtel, Sara", + "fl": "Sara Bershtel", + "role": "Author" + }, + { + "lf": "Graubard, Allen", + "fl": "Allen Graubard", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0029030854", + "isbn": { + "0": "0029030854", + "2": "9780029030851" + }, + "asin": "0029030854", + "ean": ["0029030854"], + "publication": "Free Pr (1992), 272 pages", + "date": "1992", + "summary": "Saving Remnants: Feeling Jewish in America by Sara Bershtel (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "E184.J5 B496" + }, + "subject": [["Jews", + "Cultural assimilation", + "United States"], + ["Judaism", + "United States"], + ["United States", + "Ethnic relations"]], + "source": "amazon.com books", + "workcode": "966131", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "272 p.; 10 inches", + "height": "10 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "10 x 6.5 x 1.5 inches", + "weight": "1.543235834 pounds", + "pages": "272 " +}, +"256215830": { + "books_id": "256215830", + "title": "Abraham: A Journey to the Heart of Three Faiths", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feiler, Bruce", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feiler, Bruce", + "fl": "Bruce Feiler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060838663", + "isbn": { + "0": "0060838663", + "2": "9780060838669" + }, + "asin": "0060838663", + "ean": ["0060838663"], + "publication": "William Morrow Paperbacks (2005), Edition: First Harper Perennial Edition, 234 pages", + "date": "2005", + "summary": "Abraham: A Journey to the Heart of Three Faiths by Bruce Feiler (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.11092"], + "wording": ["Genesis", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS580 .F45" + }, + "subject": [["Abraham (Biblical patriarch)"]], + "awards": ["Amazon.com Best Books", + "New York Times bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1240", + "1247", + "1944", + "3578"], + "source": "amazon.com books", + "workcode": "98594", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "234 p.; 8.05 x 0.65 inches", + "height": "0.65 inches", + "thickness": "5.36 inches", + "length": "8.05 inches", + "dimensions": "0.65 x 8.05 x 5.36 inches", + "weight": "0.46 pounds", + "pages": "234 " +}, +"256215836": { + "books_id": "256215836", + "title": "Topol's Treasury of Jewish Humor, Wit and Wisdom", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Topol", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Topol", + "fl": "Topol", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1569800324", + "isbn": { + "0": "1569800324", + "2": "9781569800324" + }, + "asin": "1569800324", + "ean": ["1569800324"], + "publication": "Barricade Books (2004), Edition: First Edition, 256 pages", + "date": "2004", + "summary": "Topol's Treasury of Jewish Humor, Wit and Wisdom by Topol (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.88"], + "wording": ["Collections of literary texts from more than two literatures", + "Collections of miscellaneous writings", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.J5 T585" + }, + "source": "amazon.com books", + "workcode": "5432777", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 9.22 inches", + "height": "9.22 inches", + "thickness": "0.65 inches", + "length": "6.08 inches", + "dimensions": "9.22 x 6.08 x 0.65 inches", + "weight": "0.75 pounds", + "pages": "256 " +}, +"256215847": { + "books_id": "256215847", + "title": "Keeper of the Law: Louis Ginzberg", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ginzberg, Eli", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ginzberg, Eli", + "fl": "Eli Ginzberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0028QKK0Y", + "publication": "Jewish Publication Society (1966), Edition: First Edition, 348 pages", + "date": "1966", + "summary": "Keeper of the Law: Louis Ginzberg by Eli Ginzberg (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.610924"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Rabbis", + "Religion"] + }, + "lcc": { + "code": "BM755.G5 G5" + }, + "source": "amazon.com books", + "workcode": "3419890", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "348 p.", + "weight": "3 pounds", + "pages": "348 " +}, +"256215882": { + "books_id": "256215882", + "title": "People I Have Loved, Known or Admired", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosten, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosten, Leo", + "fl": "Leo Rosten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0070539766", + "isbn": { + "0": "0070539766", + "2": "9780070539761" + }, + "asin": "0070539766", + "ean": ["0070539766"], + "publication": "McGraw-Hill (1970), Edition: First Edition, 410 pages", + "date": "1970", + "summary": "People I Have Loved, Known or Admired by Leo Rosten (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["818.5"], + "wording": ["20th Century", + "American literature in English", + "American miscellaneous writings in English", + "Literature"] + }, + "lcc": { + "code": "PS3535.O7577 P4" + }, + "subject": [["Rosten, Leo Calvin, 1908-1997", + "Friends and associates"], + ["United States", + "Biography"]], + "source": "amazon.com books", + "workcode": "27099", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "410 p.", + "weight": "1.7 pounds", + "pages": "410 " +}, +"256215887": { + "books_id": "256215887", + "title": "Judgment in Jerusalem: Chief Justice Simon Agranat and the Zionist Century", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lahav, Pnina", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lahav, Pnina", + "fl": "Pnina Lahav", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520205952", + "isbn": { + "0": "0520205952", + "2": "9780520205956" + }, + "asin": "0520205952", + "ean": ["0520205952"], + "publication": "University of California Press (1997), Edition: First Edition, 352 pages", + "date": "1997", + "summary": "Judgment in Jerusalem: Chief Justice Simon Agranat and the Zionist Century by Pnina Lahav (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["347.5694"], + "wording": ["Asia", + "Law", + "Middle East", + "Procedure and courts", + "Social sciences"] + }, + "lcc": { + "code": "KMK110.A38 L34" + }, + "subject": [["Agranat, Shimon, 1906-"], + ["Judges", + "Israel", + "Biography"], + ["Law", + "Israel", + "History"], + ["Zionism", + "History", + "20th century"]], + "source": "amazon.com books", + "workcode": "1792789", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "352 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.25 inches", + "weight": "1.13097140406 pounds", + "pages": "352 " +}, +"256215890": { + "books_id": "256215890", + "title": "The Joys of Yiddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosten, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosten, Leo", + "fl": "Leo Rosten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "5551903478", + "isbn": { + "0": "5551903478", + "2": "9785551903475" + }, + "asin": "5551903478", + "ean": ["5551903478"], + "publication": "McGraw-Hill (1968), 533 pages", + "date": "1968", + "summary": "The Joys of Yiddish by Leo Rosten (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["422.43703"], + "wording": ["Elements from Germanic languages", + "Elements from foreign languages", + "English & Old English languages", + "Etymology of standard English", + "Language", + "[unassigned]"] + }, + "lcc": { + "code": "PN6231.J5" + }, + "subject": { + "0": ["English language", + "Foreign words and phrases", + "Yiddish"], + "1": ["English language", + "Foreign words and phrases", + "Yiddish", + "Dictionaries"], + "2": ["English language", + "Foreign words and phrases", + "Yiddish", + "Humor"], + "3": ["English language", + "Humor"], + "4": ["Jewish wit and humor"], + "6": ["Yiddish language", + "Dictionaries"], + "7": ["Yiddish language", + "Glossaries, vocabularies, etc"], + "8": ["Yiddish language", + "Humor"], + "9": ["Yiddish language", + "Influence on English", + "Humor"] + }, + "originaltitle": "The joys of yiddish", + "awards": ["New York Times bestseller", + "Notable Books List"], + "genre": ["Nonfiction", + "General Nonfiction", + "Reference"], + "genre_id": ["20275895", + "1247", + "4877"], + "source": "amazon.com books", + "workcode": "56535", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "533 p.", + "height": "9 inches", + "thickness": "2.5 inches", + "length": "6.3 inches", + "dimensions": "9 x 6.3 x 2.5 inches", + "weight": "2.5 pounds", + "pages": "533 " +}, +"256215899": { + "books_id": "256215899", + "title": "Jewish Responses to Nazi Persecution", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trunk, Isaiah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Trunk, Isaiah", + "fl": "Isaiah Trunk", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812825004", + "isbn": { + "0": "0812825004", + "2": "9780812825008" + }, + "asin": "0812825004", + "ean": ["0812825004"], + "publication": "Stein & Day Pub (1979), Edition: First Edition, 371 pages", + "date": "1979", + "summary": "Jewish Responses to Nazi Persecution by Isaiah Trunk (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 T7" + }, + "subject": [["Holocaust, Jewish (1939-1945)"], + ["World War, 1939-1945", + "Personal narratives, Jewish"]], + "source": "amazon.com books", + "workcode": "4804653", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "371 p.", + "weight": "1.63 pounds", + "pages": "371 " +}, +"256215984": { + "books_id": "256215984", + "title": "Out of Chaos: Hidden Children Remember the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fox, Elaine Saphier", + "primaryauthorrole": "Editor", + "secondaryauthor": "Lassner, Phyllis", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Fox, Elaine Saphier", + "fl": "Elaine Saphier Fox", + "role": "Editor" + }, + { + "lf": "Lassner, Phyllis", + "fl": "Phyllis Lassner", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0810129116", + "isbn": { + "0": "0810129116", + "2": "9780810129115" + }, + "asin": "0810129116", + "ean": ["0810129116"], + "publication": "Northwestern University Press (2013), 318 pages", + "date": "2013", + "summary": "Out of Chaos: Hidden Children Remember the Holocaust by Elaine Saphier Fox (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.531835083"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804.48 O98" + }, + "source": "amazon.com books", + "workcode": "28284414", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "318 p.; 10 inches", + "height": "10 inches", + "thickness": "1.2 inches", + "length": "7 inches", + "dimensions": "10 x 7 x 1.2 inches", + "weight": "1.322773572 pounds", + "pages": "318 " +}, +"256215997": { + "books_id": "256215997", + "title": "On Jewish Law and Lore", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ginzberg, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ginzberg, Louis", + "fl": "Louis Ginzberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DO54M", + "publication": "Jewish Publication Society of America (1955), 263 pages", + "date": "1955", + "summary": "On Jewish Law and Lore by Louis Ginzberg (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.04"], + "wording": ["Essays", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520.G5" + }, + "subject": { + "0": ["Jewish folk literature"], + "1": ["Jewish law"], + "3": ["Jews", + "Folklore"] + }, + "source": "amazon.com books", + "workcode": "1699983", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "263 p.", + "weight": "0.6 pounds", + "pages": "263 " +}, +"256216040": { + "books_id": "256216040", + "title": "Zionist and Patriot: The Odyssey of an American Jewish Leader", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Irwin; Sklare Joshua M. Hochberg", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Irwin; Sklare Joshua M. Hochberg", + "fl": "Irwin; Sklare Joshua M. Hochberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002NLY88O", + "publication": "Montefiore Press (2008), Edition: First Edition", + "date": "2008", + "summary": "Zionist and Patriot: The Odyssey of an American Jewish Leader by Irwin; Sklare Joshua M. Hochberg (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537142", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256216078": { + "books_id": "256216078", + "title": "The Labyrinth of Exile: A Life of Theodor Herzl", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pawel, Ernst", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pawel, Ernst", + "fl": "Ernst Pawel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374182566", + "isbn": { + "0": "0374182566", + "2": "9780374182564" + }, + "asin": "0374182566", + "ean": ["0374182566"], + "publication": "Farrar, Straus and Giroux (1989), Edition: First Edition, 564 pages", + "date": "1989", + "summary": "The Labyrinth of Exile: A Life of Theodor Herzl by Ernst Pawel (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.5"], + "wording": ["Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS151.H4 P39" + }, + "subject": [["Zionists", + "Austria", + "Biography"]], + "source": "amazon.com books", + "workcode": "2190959", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "564 p.; 9.2 inches", + "height": "9.2 inches", + "thickness": "1.7 inches", + "length": "5.7 inches", + "dimensions": "9.2 x 5.7 x 1.7 inches", + "weight": "2.1 pounds", + "pages": "564 " +}, +"256216105": { + "books_id": "256216105", + "title": "The Abandonment of the Jews: America and the Holocaust 1941-1945", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wyman, David S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wyman, David S.", + "fl": "David S. Wyman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "159558174X", + "isbn": { + "0": "159558174X", + "2": "9781595581747" + }, + "asin": "159558174X", + "ean": ["159558174X"], + "upc": ["884666251392"], + "publication": "The New Press (2007), Edition: 2nd prt., 458 pages", + "date": "2007", + "summary": "The Abandonment of the Jews: America and the Holocaust 1941-1945 by David S. Wyman (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 W95" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["United States", + "Emigration and immigration"], + "4": ["United States. War Refugee Board"], + "5": ["World War, 1939-1945", + "Jews", + "Rescue", + "United States"], + "6": ["World War, 1939-1945", + "United States"], + "8": ["World War, 1939-1945", + "United States.", + "Rescue"], + "9": ["World war, 1939-1945", + "United States"] + }, + "series": ["America and the Holocaust"], + "awards": ["Anisfield-Wolf Book Award", + "National Book Critics Circle Award", + "National Jewish Book Award", + "New York Times bestseller", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "320448", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "458 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.25 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1.25 inches", + "weight": "2.314853751 pounds", + "pages": "458 " +}, +"256216124": { + "books_id": "256216124", + "title": "A Jewish State", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Herzl, Theodor", + "primaryauthorrole": "Author", + "secondaryauthor": "De Haas, Jacob|d'Avigdor, Sylvie", + "secondaryauthorroles": "Translator|Translator", + "authors": [{ + "lf": "Herzl, Theodor", + "fl": "Theodor Herzl", + "role": "Author" + }, + { + "lf": "De Haas, Jacob", + "fl": "Jacob De Haas", + "role": "Translator" + }, + { + "lf": "d'Avigdor, Sylvie", + "fl": "Sylvie d'Avigdor", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1508629609", + "isbn": { + "0": "1508629609", + "2": "9781508629603" + }, + "asin": "1508629609", + "ean": ["1508629609"], + "publication": "CreateSpace Independent Publishing Platform (2015), 64 pages", + "date": "2015", + "summary": "A Jewish State by Theodor Herzl (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54095694"], + "wording": ["Asia", + "Biography And History", + "Middle East", + "Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences", + "The Levant", + "Zionism"] + }, + "lcc": { + "code": "DS149 .H514" + }, + "subject": { + "0": ["Authors, Austrian", + "Biography"], + "1": ["Biographies"], + "2": ["Documentaries and factual films and video"], + "3": ["Herzl, Theodor, 1860-1904"], + "4": ["Historical films and video (Nonfiction)"], + "5": ["Israel", + "Armed Forces"], + "6": ["Israel", + "Economic conditions"], + "7": ["Israel", + "History"], + "8": ["Jews", + "Legal status, laws, etc"], + "9": ["Zionism"], + "11": ["Zionism", + "History"], + "12": ["Zionists", + "Austria", + "Biography"], + "14": ["biographies"] + }, + "awards": ["100 Books That Shaped World History", + "Books That Changed the World", + "Harenberg Buch der 1000 B\u00fccher", + "New York Public Library's Books of the Century"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "66879", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "540074", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "64 p.; 9 inches", + "height": "9 inches", + "thickness": "0.15 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.15 inches", + "pages": "64 " +}, +"256216185": { + "books_id": "256216185", + "title": "The Zionist Idea: A Historical Analysis and Reader", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hertzberg, Arthur", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Hertzberg, Arthur", + "fl": "Arthur Hertzberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827606222", + "isbn": { + "0": "0827606222", + "2": "9780827606227" + }, + "asin": "0827606222", + "ean": ["0827606222"], + "publication": "JEWISH PUBLICATON SOCIETY (1997), Edition: First Edition, 656 pages", + "date": "1997", + "summary": "The Zionist Idea: A Historical Analysis and Reader by Arthur Hertzberg (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54"], + "wording": ["Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS149 .Z675" + }, + "subject": [["Zionism", + "History", + "Sources"], + ["Zionism", + "Sources"]], + "source": "amazon.com books", + "workcode": "1102539", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "656 p.; 8.2 inches", + "height": "8.2 inches", + "thickness": "1.4 inches", + "length": "5.3 inches", + "dimensions": "8.2 x 5.3 x 1.4 inches", + "weight": "1.55 pounds", + "pages": "656 " +}, +"256216228": { + "books_id": "256216228", + "title": "The idea of the Jewish state (Harvard Middle Eastern studies, 3)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Halpern, Ben", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Halpern, Ben", + "fl": "Ben Halpern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006AWXIQ", + "publication": "Harvard University Press (1961), Edition: First Edition, 492 pages", + "date": "1961", + "summary": "The idea of the Jewish state (Harvard Middle Eastern studies, 3) by Ben Halpern (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149 .H34" + }, + "subject": { + "0": ["Israel", + "Foreign relations"], + "1": ["Palestine", + "History", + "1917-1948"], + "3": ["Zionism", + "History"] + }, + "source": "amazon.com books", + "workcode": "3473646", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "492 p.", + "weight": "3 pounds", + "pages": "492 " +}, +"256216231": { + "books_id": "256216231", + "title": "New Lives: Survivors of the Holocaust Living in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabinowitz, Dorothy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabinowitz, Dorothy", + "fl": "Dorothy Rabinowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394485734", + "isbn": { + "0": "0394485734", + "2": "9780394485737" + }, + "asin": "0394485734", + "ean": ["0394485734"], + "publication": "Random House Inc (1976), Edition: First Edition, 242 pages", + "date": "1976", + "summary": "New Lives: Survivors of the Holocaust Living in America by Dorothy Rabinowitz (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 R18" + }, + "subject": { + "0": ["Holocaust survivors", + "United States", + "Biography"], + "2": ["Holocaust, Jewish (1939-1945)", + "Personal narratives"], + "4": ["Jews", + "United States", + "Biography"], + "6": ["United States", + "Biography"], + "7": ["United States", + "Emigration and immigration", + "Biography"], + "8": ["World War, 1939-1945", + "Personal narratives, Jewish"] + }, + "source": "amazon.com books", + "workcode": "748361", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "242 p.", + "height": "8.3 inches", + "thickness": "1.2 inches", + "length": "4.2 inches", + "dimensions": "8.3 x 4.2 x 1.2 inches", + "weight": "3 pounds", + "pages": "242 " +}, +"256216254": { + "books_id": "256216254", + "title": "THE FIRST TEN YEARS", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Eytan, Walter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eytan, Walter", + "fl": "Walter Eytan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B08YNTDMXL", + "publication": "Simon and Schuster, Edition: First Edition", + "summary": "THE FIRST TEN YEARS by Walter Eytan", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537158", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"256216283": { + "books_id": "256216283", + "title": "Diaries of Theodor Herzl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Herzl, Theodor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Herzl, Theodor", + "fl": "Theodor Herzl", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1131159276", + "isbn": { + "0": "1131159276", + "2": "9781131159270" + }, + "asin": "B0007DKYKQ", + "ean": ["1131159276"], + "publication": "Grosset & Dunlap (1962), Edition: Universal Library ed, 494 pages", + "date": "1962", + "summary": "Diaries of Theodor Herzl by Theodor Herzl (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS149.H5253" + }, + "subject": [["Zionism"]], + "source": "amazon.com books", + "workcode": "2935307", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "494 p.", + "weight": "1.3 pounds", + "pages": "494 " +}, +"256216284": { + "books_id": "256216284", + "title": "Rebirth and destiny of Israel;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DEAM4", + "publication": "Philosophical Library (1954), Edition: First Edition, 539 pages", + "date": "1954", + "summary": "Rebirth and destiny of Israel; by David Ben-Gurion (1954)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94004"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.B4" + }, + "subject": [["Palestine", + "History"]], + "source": "amazon.com books", + "workcode": "2276984", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "539 p.", + "weight": "1.7 pounds", + "pages": "539 " +}, +"256216306": { + "books_id": "256216306", + "title": "Harvest in the Desert", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1117862704", + "isbn": { + "0": "1117862704", + "2": "9781117862705" + }, + "asin": "B0000EEQEC", + "ean": ["1117862704"], + "publication": "Jewish Pub (1944), Edition: First Edition, 316 pages", + "date": "1944", + "summary": "Harvest in the Desert by Maurice Samuel (1944)", + "language": ["German", + "English"], + "language_codeA": ["ger", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["ger", + "eng"], + "ddc": { + "code": ["956.94001"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149.S47" + }, + "subject": { + "0": ["Jews", + "Palestine", + "History"], + "1": ["Palestine", + "History", + "1917-1948"], + "2": ["Zionism", + "History"], + "4": ["Zionism", + "history"] + }, + "source": "amazon.com books", + "workcode": "2614237", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "316 p.", + "weight": "3 pounds", + "pages": "316 " +}, +"256216332": { + "books_id": "256216332", + "title": "Rebirth and destiny of Israel;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DEAM4", + "publication": "Philosophical Library (1954), Edition: First Edition, 539 pages", + "date": "1954", + "summary": "Rebirth and destiny of Israel; by David Ben-Gurion (1954)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94004"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.B4" + }, + "subject": [["Palestine", + "History"]], + "source": "amazon.com books", + "workcode": "2276984", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "539 p.", + "weight": "1.7 pounds", + "pages": "539 " +}, +"256216359": { + "books_id": "256216359", + "title": "God in Search of Man : A Philosophy of Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heschel, Abraham Joshua", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Heschel, Abraham Joshua", + "fl": "Abraham Joshua Heschel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374513317", + "isbn": { + "0": "0374513317", + "2": "9780374513313" + }, + "asin": "0374513317", + "ean": ["0374513317"], + "publication": "Farrar, Straus and Giroux (1976), Edition: Reprint, 464 pages", + "date": "1976", + "summary": "God in Search of Man : A Philosophy of Judaism by Abraham Joshua Heschel (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561 .H46" + }, + "subject": { + "0": ["Judaism"], + "2": ["Religion", + "Philosophy"], + "4": ["judaism"] + }, + "awards": ["HarperCollins 100 Best Spiritual Books of the Century"], + "genre": ["Nonfiction", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "29238", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.2 inches", + "length": "5.4499891 inches", + "dimensions": "8.25 x 5.4499891 x 1.2 inches", + "weight": "0.87303055752 pounds", + "pages": "464 " +}, +"256216376": { + "books_id": "256216376", + "title": "Alfy: An Incredible Life Journey", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Alfy Nathan", + "primaryauthorrole": "Author", + "secondaryauthor": "Joshua M. Sklare", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Alfy Nathan", + "fl": "Alfy Nathan", + "role": "Author" + }, + { + "lf": "Joshua M. Sklare", + "fl": "Joshua M. Sklare", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0981926509", + "isbn": { + "0": "0981926509", + "2": "9780981926506" + }, + "asin": "B015TAYC2M", + "ean": ["0981926509"], + "publication": "Montefiore Press (2010), Edition: First Edition, 223 pages", + "date": "2010", + "summary": "Alfy: An Incredible Life Journey by Alfy Nathan (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537167", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +},"256216386": { + "books_id": "256216386", + "title": "Chaim Weizmann: A Biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rose, Norman A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rose, Norman A.", + "fl": "Norman A. Rose", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "067080469X", + "isbn": { + "0": "067080469X", + "2": "9780670804696" + }, + "asin": "067080469X", + "ean": ["067080469X"], + "publication": "Viking (1986), Edition: First Edition, 544 pages", + "date": "1986", + "summary": "Chaim Weizmann: A Biography by Norman A. Rose (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.W45 R67" + }, + "subject": [["Presidents", + "Israel", + "Biography"], + ["Zionists", + "Biography"]], + "source": "amazon.com books", + "workcode": "239477", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "544 p.; 1 inches", + "height": "1 inch", + "thickness": "1 inch", + "length": "1 inch", + "dimensions": "1 x 1 x 1 inches", + "weight": "2.38 pounds", + "pages": "544 " +}, +"256216408": { + "books_id": "256216408", + "title": "Jewish culture in Eastern Europe: The classical period", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shulvass, Moses A", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shulvass, Moses A", + "fl": "Moses A Shulvass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870682733", + "isbn": { + "0": "0870682733", + "2": "9780870682735" + }, + "asin": "0870682733", + "ean": ["0870682733"], + "publication": "Ktav Pub. House (1975), 180 pages", + "date": "1975", + "summary": "Jewish culture in Eastern Europe: The classical period by Moses A Shulvass (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.8"], + "wording": ["Germany and neighboring central European countries", + "History & geography", + "History of Europe", + "Poland"] + }, + "lcc": { + "code": "DS113.S48" + }, + "subject": [["Jews", + "Europe, Eastern", + "Intellectual life"], + ["Talmud Torah (Judaism)"]], + "source": "amazon.com books", + "workcode": "4241946", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256216485": { + "books_id": "256216485", + "title": "AJS REVIEW - VOLUME ONE", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000V803A8", + "publication": "Association for Jewish Studi", + "summary": "AJS REVIEW - VOLUME ONE by unknown author", + "lcc": [], + "source": "amazon.com books", + "workcode": "31537174", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"256216486": { + "books_id": "256216486", + "title": "A land of our own: An oral autobiography,", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Meir, Golda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meir, Golda", + "fl": "Golda Meir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399110690", + "isbn": { + "0": "0399110690", + "2": "9780399110696" + }, + "asin": "0399110690", + "ean": ["0399110690"], + "publication": "Putnam (1973), Edition: Edition Unstated, 251 pages", + "date": "1973", + "summary": "A land of our own: An oral autobiography, by Golda Meir (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.M42 A36" + }, + "subject": [["Israel", + "Politics and government", + "1948-1967"], + ["Israel", + "Politics and government", + "1967-1993"], + ["Meir, Golda, 1898-1978"], + ["Women prime ministers", + "Israel", + "Biography"]], + "source": "amazon.com books", + "workcode": "2215091", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "251 p.", + "height": "8.3 inches", + "thickness": "1.1 inches", + "length": "6 inches", + "dimensions": "8.3 x 6 x 1.1 inches", + "weight": "1 pound", + "pages": "251 " +}, +"256216497": { + "books_id": "256216497", + "title": "Only Human--The Eternal Alibi. From the Sermons of Rabbi Milton Steinberg", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Milton", + "primaryauthorrole": "Author", + "secondaryauthor": "Mandelbaum, Bernard", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Steinberg, Milton", + "fl": "Milton Steinberg", + "role": "Author" + }, + { + "lf": "Mandelbaum, Bernard", + "fl": "Bernard Mandelbaum", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EKIW4", + "publication": "Bloch Publishing Company (1963), 169 pages", + "date": "1963", + "summary": "Only Human--The Eternal Alibi. From the Sermons of Rabbi Milton Steinberg by Milton Steinberg (1963)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": [], + "source": "amazon.com books", + "workcode": "4062063", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "169 p.", + "weight": "1.28 pounds", + "pages": "169 " +}, +"256216505": { + "books_id": "256216505", + "title": "Contemporary Jewish Religious Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Arthur A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Arthur A.", + "fl": "Arthur A. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0029060400", + "isbn": { + "0": "0029060400", + "2": "9780029060407" + }, + "asin": "0029060400", + "ean": ["0029060400"], + "publication": "Free Press (1988), Edition: Reprint edition, 1163 pages", + "date": "1988", + "summary": "Contemporary Jewish Religious Thought by Arthur A. Cohen (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.03"], + "wording": ["Dictionaries And Encyclopedias", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM50 .C64" + }, + "subject": [["Judaism", + "Dictionaries"]], + "originaltitle": "Contemporary Jewish Religious Thought: Original Essays on Critical Concepts, Movements, and Beliefs", + "genre": ["Nonfiction", + "Philosophy", + "Reference", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "4877", + "1944"], + "source": "amazon.com books", + "workcode": "768838", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1163 p.; 9.32 inches", + "height": "9.32 inches", + "thickness": "2.17 inches", + "length": "6.36 inches", + "dimensions": "9.32 x 6.36 x 2.17 inches", + "weight": "3.62219496466 pounds", + "pages": "1163 " +}, +"256216591": { + "books_id": "256216591", + "title": "Judges - The World History of the Jewish People, Volume III", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Benjamin Mazar (editor)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Benjamin Mazar (editor)", + "fl": "Benjamin Mazar (editor)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00WZYB99K", + "publication": "Rutgers University Press (1971)", + "date": "1971", + "summary": "Judges - The World History of the Jewish People, Volume III by Benjamin Mazar (editor) (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117 DS121 .55" + }, + "subject": { + "0": ["Bible. O.T.", + "History of contemporary events"], + "1": ["Canaanites"], + "3": ["Jews", + "History"], + "4": ["Jews", + "History", + "1200-953 B.C"], + "5": ["Jews", + "history"], + "6": ["Palestine", + "History", + "To 70 A.D"] + }, + "series": ["The World History of the Jewish People"], + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "4267039", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256216609": { + "books_id": "256216609", + "title": "Fields of Offerings: Studies in Honor of Raphael Patai (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sanua, Victor D.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Sanua, Victor D.", + "fl": "Victor D. Sanua", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0838631711", + "isbn": { + "0": "0838631711", + "2": "9780838631713" + }, + "asin": "0838631711", + "ean": ["0838631711"], + "publication": "UNKNO (1983), Edition: First Edition, 420 pages", + "date": "1983", + "summary": "Fields of Offerings: Studies in Honor of Raphael Patai (English and Hebrew Edition) by Victor D. Sanua (1983)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "GR98 .F53" + }, + "source": "amazon.com books", + "workcode": "11067732", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "420 p.", + "height": "9.06 inches", + "length": "5.91 inches", + "dimensions": "9.06 x 5.91 inches", + "weight": "1.3889122506 pounds", + "pages": "420 " +}, +"256216627": { + "books_id": "256216627", + "title": "The Six Days of Yad-Mordechai", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Larkin, Margaret", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Larkin, Margaret", + "fl": "Margaret Larkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000K1WH3C", + "publication": "Yad Mordechai Museum (1977), Edition: 10th Printing", + "date": "1977", + "summary": "The Six Days of Yad-Mordechai by Margaret Larkin (1977)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS110.Y25 L3" + }, + "subject": [["Yad Mordekhay (Israel)"]], + "source": "amazon.com books", + "workcode": "72590", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.92 pounds" +}, +"256216651": { + "books_id": "256216651", + "title": "The Herodian period (The World history of the Jewish People : Ancient times ; 1st ser., v. 7)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Avi-Yonah, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Avi-Yonah, Michael", + "fl": "Michael Avi-Yonah", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813508061", + "isbn": { + "0": "0813508061", + "2": "9780813508061" + }, + "asin": "0813508061", + "ean": ["0813508061"], + "publication": "Rutgers University Press (1975), Edition: First Edition, 402 pages", + "date": "1975", + "summary": "The Herodian period (The World history of the Jewish People : Ancient times ; 1st ser., v. 7) by Michael Avi-Yonah (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117 DS122 .W6" + }, + "series": ["The World History of the Jewish People"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4706950", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "402 p.", + "height": "10.4 inches", + "thickness": "1.6 inches", + "length": "7.6 inches", + "dimensions": "10.4 x 7.6 x 1.6 inches", + "weight": "3.5 pounds", + "pages": "402 " +}, +"256216724": { + "books_id": "256216724", + "title": "The World History of the Jewish People. Vol. XI (11): The Dark Ages. Jews in Christian Europe 711-1096 [Second Series: Medieval Period. Vol. Two: The Dark Ages]", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J0Q2QC", + "publication": "Rutgers (1966), Edition: First Edition", + "date": "1966", + "summary": "The World History of the Jewish People. Vol. XI (11): The Dark Ages. Jews in Christian Europe 711-1096 [Second Series: Medieval Period. Vol. Two: The Dark Ages] by Cecil Roth (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537189", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256216725": { + "books_id": "256216725", + "title": "The Jews in the Roman World", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Grant, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Grant, Michael", + "fl": "Michael Grant", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0880290269", + "isbn": { + "0": "0880290269", + "2": "9780880290265" + }, + "asin": "0880290269", + "ean": ["0880290269"], + "publication": "Dorset (1984), 293 pages", + "date": "1984", + "summary": "The Jews in the Roman World by Michael Grant (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS122 .G73" + }, + "subject": [["Jews", + "History", + "168 B.C.-135 A.D"], + ["Jews", + "Rome"]], + "source": "amazon.com books", + "workcode": "114941", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "293 p.", + "height": "9 inches", + "thickness": "1.3 inches", + "length": "6.4 inches", + "dimensions": "9 x 6.4 x 1.3 inches", + "weight": "1.58 pounds", + "pages": "293 " +}, +"256216782": { + "books_id": "256216782", + "title": "Moral Grandeur and Spiritual Audacity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heschel, Abraham", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Heschel, Abraham", + "fl": "Abraham Heschel", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780374524951", + "isbn": ["9780374524951", + "0374524955"], + "asin": "0374524955", + "ean": ["0374524955"], + "publication": "Farrar, Straus and Giroux (1997), 464 pages", + "date": "1997", + "summary": "Moral Grandeur and Spiritual Audacity by Abraham Heschel (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .H4549" + }, + "subject": { + "0": ["Judaism", + "Essence, genius, nature"], + "2": ["Judaism and social problems"], + "4": ["Spiritual life", + "Judaism"] + }, + "source": "amazon.com books", + "workcode": "331585", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.16 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.16 inches", + "weight": "1.17065461122 pounds", + "pages": "464 " +}, +"256216804": { + "books_id": "256216804", + "title": "The Jews in the Greek Age", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bickerman, Elias J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bickerman, Elias J.", + "fl": "Elias J. Bickerman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873341236", + "isbn": { + "0": "0873341236", + "2": "9780873341233" + }, + "asin": "0873341236", + "ean": ["0873341236"], + "publication": "The Jewish Theological Seminary Press (2012), 352 pages", + "date": "2012", + "summary": "The Jews in the Greek Age by Elias J. Bickerman (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS121 .B53" + }, + "subject": [["Hellenism"], + ["Jews", + "Civilization", + "Greek influence"], + ["Jews", + "Civilization", + "Greek influences"], + ["Jews", + "History", + "586 B.C.-70 A.D"], + ["Judaism", + "History", + "Post-exilic period, 586 B.C.-210 A.D"], + ["hellenism"]], + "originaltitle": "The Jews in the Greek Age", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "363250", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 9 inches", + "height": "9 inches", + "thickness": "0.88 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.88 inches", + "weight": "1.32 pounds", + "pages": "352 " +}, +"256216822": { + "books_id": "256216822", + "title": "The Hellenistic age: Political history of Jewish Palestine from 332 B.C.E. to 67 B.C.E (The World history of the Jewish people : Ancient times ; 1st ser., v. 6)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schalit, Abraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schalit, Abraham", + "fl": "Abraham Schalit", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813507103", + "isbn": { + "0": "0813507103", + "2": "9780813507101" + }, + "asin": "0813507103", + "ean": ["0813507103"], + "publication": "Rutgers University Press (1972), Edition: First American Edition, 360 pages", + "date": "1972", + "summary": "The Hellenistic age: Political history of Jewish Palestine from 332 B.C.E. to 67 B.C.E (The World history of the Jewish people : Ancient times ; 1st ser., v. 6) by Abraham Schalit (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117 DS121 .65" + }, + "series": ["The World History of the Jewish People"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4654966", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "360 p.", + "height": "10.2 inches", + "thickness": "1.6 inches", + "length": "7.4 inches", + "dimensions": "10.2 x 7.4 x 1.6 inches", + "weight": "3.05 pounds", + "pages": "360 " +}, +"256216837": { + "books_id": "256216837", + "title": "Selected Poems: Chaim Nachman Bialik", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bialik, Chaim Nachman.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bialik, Chaim Nachman.", + "fl": "Chaim Nachman. Bialik", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000S6MOHS", + "publication": "New York: The New Palestine, 1926. (1926), 79 pages", + "date": "1926", + "summary": "Selected Poems: Chaim Nachman Bialik by Chaim Nachman. Bialik (1926)", + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 A6" + }, + "subject": [["Bialik, Hayyim Nahman, 1873-1934", + "Translations into English"]], + "awards": ["Philip Ward's Lifetime Reading Plan", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "Poetry"], + "genre_id": ["17160326", + "10010"], + "source": "amazon.com books", + "workcode": "2013499", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "79 p.", + "weight": "0.47 pounds", + "pages": "79 " +}, +"256216860": { + "books_id": "256216860", + "title": "The Periodic Table", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Levi, Primo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levi, Primo", + "fl": "Primo Levi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0141399449", + "isbn": { + "0": "0141399449", + "2": "9780141399447" + }, + "asin": "0141399449", + "ean": ["0141399449"], + "publication": "Penguin books, limited (2010), 194 pages", + "date": "2010", + "summary": "The Periodic Table by Primo Levi (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["854.914"], + "wording": ["1900-", + "1945-1999", + "20th Century", + "Italian essays", + "Italian, Romanian & related literatures", + "Literature"] + }, + "lcc": { + "code": "PQ4872.E8 S513" + }, + "originaltitle": "Il sistema periodico", + "awards": ["100 der besten Romane von den gro\u00dfen Erz\u00e4hlern des 20. Jahrhunderts", + "501 Must-Read Books (Emma Beare, 2006)", + "Blackwell's 1879-2019: 140 Years 140 Books", + "SWR-Bestenliste", + "The Guardian 100 Greatest Non-Fiction", + "The New York Times Best Books of the Year", + "The Observer's 100 Greatest Novels of All Time"], + "genre": ["Biography & Memoir"], + "genre_id": ["1240"], + "source": "amazon.com books", + "workcode": "7216", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "194 p.; 7.09 inches", + "height": "7.0866 inches", + "thickness": "0.59055 inches", + "length": "4.40944 inches", + "dimensions": "7.0866 x 4.40944 x 0.59055 inches", + "weight": "0.2866009406 pounds", + "pages": "194 " +}, +"256216866": { + "books_id": "256216866", + "title": "To Life: A Celebration of Jewish Being and Thinking", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kushner, Harold S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kushner, Harold S.", + "fl": "Harold S. Kushner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0446670022", + "isbn": { + "0": "0446670022", + "2": "9780446670029" + }, + "asin": "0446670022", + "ean": ["0446670022"], + "publication": "Warner Books (1994), Edition: Reprint, 304 pages", + "date": "1994", + "summary": "To Life: A Celebration of Jewish Being and Thinking by Harold S. Kushner (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .K87" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Judaism"], + "4": ["Judaism", + "Doctrines"], + "5": ["Judaism", + "Essence, genius, nature"], + "6": ["Spiritual life", + "Judaism"], + "7": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "179293", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8 inches", + "height": "8 inches", + "thickness": "0.875 inches", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 0.875 inches", + "weight": "0.6172943336 pounds", + "pages": "304 " +}, +"256216877": { + "books_id": "256216877", + "title": "And I Shall Dwell Among Them: Historic Synagogues of the World", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Folberg, Neil", + "primaryauthorrole": "Author", + "secondaryauthor": "Folberg, Neil|Assis, Yom Tov", + "secondaryauthorroles": "Photographer|Author", + "authors": [{ + "lf": "Folberg, Neil", + "fl": "Neil Folberg", + "role": "Author" + }, + { + "lf": "Folberg, Neil", + "fl": "Neil Folberg", + "role": "Photographer" + }, + { + "lf": "Assis, Yom Tov", + "fl": "Yom Tov Assis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "089381640X", + "isbn": { + "0": "089381640X", + "2": "9780893816407" + }, + "asin": "089381640X", + "ean": ["089381640X"], + "publication": "Aperture (1995), Edition: First Edition, 176 pages", + "date": "1995", + "summary": "And I Shall Dwell Among Them: Historic Synagogues of the World by Neil Folberg (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["726.3"], + "wording": ["Architecture", + "Arts & recreation", + "Buildings for religious and related purposes", + "Synagogues and Jewish temples"] + }, + "lcc": { + "code": "BM653 .F65" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Art & Design", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1944"], + "source": "amazon.com books", + "workcode": "361560", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "176 p.; 12.25 inches", + "height": "12.25 inches", + "thickness": "1 inch", + "length": "9.75 inches", + "dimensions": "12.25 x 9.75 x 1 inches", + "weight": "3.3 pounds", + "pages": "176 " +}, +"256216888": { + "books_id": "256216888", + "title": "The Woman of Valor: Eshet Hayil", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Israel, Adin Steinsaltz Even", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Israel, Adin Steinsaltz Even", + "fl": "Adin Steinsaltz Even Israel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568213786", + "isbn": { + "0": "1568213786", + "2": "9781568213781" + }, + "asin": "1568213786", + "ean": ["1568213786"], + "publication": "Jason Aronson (1994), 112 pages", + "date": "1994", + "summary": "The Woman of Valor: Eshet Hayil by Adin Steinsaltz Even Israel (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "B2599" + }, + "source": "amazon.com books", + "workcode": "4040017", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "112 p.; 13 inches", + "height": "13 inches", + "thickness": "0.75 inches", + "length": "10 inches", + "dimensions": "13 x 10 x 0.75 inches", + "weight": "2.44933573082 pounds", + "pages": "112 " +}, +"256216920": { + "books_id": "256216920", + "title": "How to Cure a Fanatic", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Oz, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oz, Amos", + "fl": "Amos Oz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780691148632", + "isbn": ["9780691148632", + "0691148635"], + "asin": "0691148635", + "ean": ["0691148635"], + "publication": "Princeton University Press (2010), Edition: Reprint, 104 pages", + "date": "2010", + "summary": "How to Cure a Fanatic by Amos Oz (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.053"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .O93" + }, + "subject": [["Arab-Israeli conflict,", + "1993-"], + ["Authors, Israeli", + "Interviews"], + ["Fanaticism", + "Palestine"], + ["Land tenure", + "Palestine"], + ["Oz, Amos", + "Interviews"]], + "originaltitle": "Como Curar Um Fan\u00e1tico", + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "655796", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "104 p.; 5.75 inches", + "height": "5.75 inches", + "thickness": "0.5 inches", + "length": "4 inches", + "dimensions": "5.75 x 4 x 0.5 inches", + "weight": "0.16 pounds", + "pages": "104 " +}, +"256217016": { + "books_id": "256217016", + "title": "The Makers of Hebrew Books in Italy; Being Chapters in the History of the Hebrew Printing Press", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Amram, David Werner 1866-1939", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Amram, David Werner 1866-1939", + "fl": "David Werner 1866-1939 Amram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1013507339", + "isbn": { + "0": "1013507339", + "2": "9781013507335" + }, + "asin": "1013507339", + "ean": ["1013507339"], + "publication": "Legare Street Press (2021), 452 pages", + "date": "2021", + "summary": "The Makers of Hebrew Books in Italy; Being Chapters in the History of the Hebrew Printing Press by David Werner 1866-1939 Amram (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["686.21924"], + "wording": ["Arabic and Hebrew", + "Letters and Alphabets", + "Manufacture for specific uses", + "Printing", + "Printing and related activities", + "Technology"] + }, + "lcc": { + "code": "Z251.H4 A45" + }, + "source": "amazon.com books", + "workcode": "4900985", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "452 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "1 inch", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 1 inches", + "weight": "1.77913045434 pounds", + "pages": "452 " +}, +"256217049": { + "books_id": "256217049", + "title": "Israel, 50 Years : As Seen by Magnum Photographers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Magnum Photos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Magnum Photos", + "fl": "Magnum Photos", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0893817740", + "isbn": { + "0": "0893817740", + "2": "9780893817749" + }, + "asin": "0893817740", + "ean": ["0893817740"], + "publication": "Aperture (1998), 198 pages", + "date": "1998", + "summary": "Israel, 50 Years : As Seen by Magnum Photographers by Magnum Photos (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126 .I87" + }, + "source": "amazon.com books", + "workcode": "5300167", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "198 p.; 12.75 inches", + "height": "12.75 inches", + "thickness": "1 inch", + "length": "10 inches", + "dimensions": "12.75 x 10 x 1 inches", + "weight": "0.661386786 pounds", + "pages": "198 " +}, +"256217054": { + "books_id": "256217054", + "title": "Here and Now: History, Nationalism, and Realism in Modern Hebrew Fiction (Judaic Traditions in Literature, Music, and Art)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hasak-Lowy, Todd", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hasak-Lowy, Todd", + "fl": "Todd Hasak-Lowy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081563157X", + "isbn": { + "0": "081563157X", + "2": "9780815631576" + }, + "asin": "081563157X", + "ean": ["081563157X"], + "publication": "Syracuse University Press (2008), 232 pages", + "date": "2008", + "summary": "Here and Now: History, Nationalism, and Realism in Modern Hebrew Fiction (Judaic Traditions in Literature, Music, and Art) by Todd Hasak-Lowy (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.43509"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5030.Z55 H36" + }, + "source": "amazon.com books", + "workcode": "31537220", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "232 p.; 9 inches", + "height": "9 inches", + "thickness": "0.78 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.78 inches", + "weight": "0.0661386786 pounds", + "pages": "232 " +}, +"256217083": { + "books_id": "256217083", + "title": "Sliding to the Right: The Contest for the Future of American Jewish Orthodoxy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heilman, Samuel C. C.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Heilman, Samuel C. C.", + "fl": "Samuel C. C. Heilman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520247639", + "isbn": { + "0": "0520247639", + "2": "9780520247635" + }, + "asin": "0520247639", + "ean": ["0520247639"], + "publication": "University of California Press (2006), Edition: First Edition, 374 pages", + "date": "2006", + "summary": "Sliding to the Right: The Contest for the Future of American Jewish Orthodoxy by Samuel C. C. Heilman (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM205 .H439" + }, + "source": "amazon.com books", + "workcode": "1277260", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "374 p.; 9 inches", + "height": "9 inches", + "thickness": "1.2 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.2 inches", + "weight": "1.32056894938 pounds", + "pages": "374 " +}, +"256217095": { + "books_id": "256217095", + "title": "Encounters Between Judaism and Modern Philosophy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fackenheim, Emil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fackenheim, Emil", + "fl": "Emil Fackenheim", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805206566", + "isbn": { + "0": "0805206566", + "2": "9780805206562" + }, + "asin": "0805206566", + "ean": ["0805206566"], + "publication": "Schocken (1987), Edition: First Edition, 275 pages", + "date": "1987", + "summary": "Encounters Between Judaism and Modern Philosophy by Emil Fackenheim (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.F32" + }, + "subject": [["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["Judaism and philosophy"]], + "source": "amazon.com books", + "workcode": "1172184", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "275 p.", + "weight": "0.75 pounds", + "pages": "275 " +}, +"256217098": { + "books_id": "256217098", + "title": "The Artless Jew: Medieval and Modern Affirmations and Denials of the Visual", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bland, Kalman P.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bland, Kalman P.", + "fl": "Kalman P. Bland", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "069108985X", + "isbn": { + "0": "069108985X", + "2": "9780691089850" + }, + "asin": "069108985X", + "ean": ["069108985X"], + "publication": "Princeton University Press (2001), Edition: First Edition, 248 pages", + "date": "2001", + "summary": "The Artless Jew: Medieval and Modern Affirmations and Denials of the Visual by Kalman P. Bland (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM538.A7 B55" + }, + "subject": [["Art, Jewish"], + ["Jewish aesthetics"], + ["Jews", + "Intellectual life"], + ["Judaism and art", + "History of doctrines"], + ["Ten commandments", + "Images"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Art & Design", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "929597", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "248 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.55 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.55 inches", + "weight": "0.8377565956 pounds", + "pages": "248 " +}, +"256217127": { + "books_id": "256217127", + "title": "Textual Knowledge: Teaching the Bible in Theory and in Practice (Jewish Education)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Holtz, Barry W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Holtz, Barry W.", + "fl": "Barry W. Holtz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873340914", + "isbn": { + "0": "0873340914", + "2": "9780873340915" + }, + "asin": "0873340914", + "ean": ["0873340914"], + "publication": "The Jewish Theological Seminary Press (2012), 188 pages", + "date": "2012", + "summary": "Textual Knowledge: Teaching the Bible in Theory and in Practice (Jewish Education) by Barry W. Holtz (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.071"], + "wording": ["Education & Research", + "Old Testament", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1193 .H55" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "1511596", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "188 p.; 9 inches", + "height": "9 inches", + "thickness": "0.47 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.47 inches", + "weight": "0.9700339528 pounds", + "pages": "188 " +}, +"256217130": { + "books_id": "256217130", + "title": "The JPS Bible Commentary: Esther", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Berlin, Adele", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berlin, Adele", + "fl": "Adele Berlin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827606990", + "isbn": { + "0": "0827606990", + "2": "9780827606999" + }, + "asin": "0827606990", + "ean": ["0827606990"], + "publication": "JEWISH PUBLICATON SOCIETY (2001), Edition: First Edition, 176 pages", + "date": "2001", + "summary": "The JPS Bible Commentary: Esther by Adele Berlin (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1373 .B47" + }, + "subject": [["Bible. O.T. Esther", + "Commentaries"]], + "series": ["JPS Bible Commentary"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "676198", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "176 p.; 10.25 inches", + "height": "10.25 inches", + "thickness": "0.75 inches", + "length": "8.5 inches", + "dimensions": "10.25 x 8.5 x 0.75 inches", + "weight": "1.41 pounds", + "pages": "176 " +}, +"256217138": { + "books_id": "256217138", + "title": "Judaism in Practice: From the Middle Ages through the Early Modern Period.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fine, Lawrence", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Fine, Lawrence", + "fl": "Lawrence Fine", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691057877", + "isbn": { + "0": "0691057877", + "2": "9780691057873" + }, + "asin": "0691057877", + "ean": ["0691057877"], + "publication": "Princeton University Press (2001), Edition: First Edition, 456 pages", + "date": "2001", + "summary": "Judaism in Practice: From the Middle Ages through the Early Modern Period. by Lawrence Fine (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM180 .J82" + }, + "subject": [["Jews", + "Biography"], + ["Judaism", + "Customs and practices", + "History", + "Sources"], + ["Judaism", + "History", + "Medieval and early modern period, 425-1789", + "Sources"], + ["Women in Judaism", + "History", + "Sources"]], + "series": ["Princeton Readings in Religions"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106670", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "456 p.; 9.2 inches", + "height": "9.2 inches", + "thickness": "1.39 inches", + "length": "6.32 inches", + "dimensions": "9.2 x 6.32 x 1.39 inches", + "weight": "1.92243092464 pounds", + "pages": "456 " +}, +"256217141": { + "books_id": "256217141", + "title": "My Dear Ones: One Family and the Final Solution", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wittenberg, Jonathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wittenberg, Jonathan", + "fl": "Jonathan Wittenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0008158061", + "isbn": { + "0": "0008158061", + "2": "9780008158064" + }, + "asin": "0008158061", + "ean": ["0008158061"], + "publication": "William Collins (2018), 368 pages", + "date": "2018", + "summary": "My Dear Ones: One Family and the Final Solution by Jonathan Wittenberg (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53180922"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804.W588" + }, + "source": "amazon.com books", + "workcode": "18197176", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 7.8 inches", + "height": "7.79526 inches", + "thickness": "1.06299 inches", + "length": "5.07873 inches", + "dimensions": "7.79526 x 5.07873 x 1.06299 inches", + "weight": "0.7275254646 pounds", + "pages": "368 " +}, +"256217194": { + "books_id": "256217194", + "title": "The God of evil: An argument from the existence of the Devil", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sontag, Frederick", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sontag, Frederick", + "fl": "Frederick Sontag", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006C0BOM", + "publication": "Harper & Row (1970), Edition: First Edition, 173 pages", + "date": "1970", + "summary": "The God of evil: An argument from the existence of the Devil by Frederick Sontag (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["211"], + "wording": ["Concepts of God", + "Philosophy & theory of religion", + "Religion"] + }, + "lcc": { + "code": "BT102 .S58" + }, + "source": "amazon.com books", + "workcode": "7533250", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "173 p.", + "weight": "1 pound", + "pages": "173 " +}, +"256217224": { + "books_id": "256217224", + "title": "Length of our days: Focus on Judaism and the personal life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Landau, Sol", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Landau, Sol", + "fl": "Sol Landau", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007E795I", + "publication": "Bloch Pub. Co (1961), Edition: First Edition", + "date": "1961", + "summary": "Length of our days: Focus on Judaism and the personal life by Sol Landau (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "9793690", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256217233": { + "books_id": "256217233", + "title": "The Classic Tales: 4,000 Years of Jewish Lore", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Frankel, Ellen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Frankel, Ellen", + "fl": "Ellen Frankel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568210388", + "isbn": { + "0": "1568210388", + "2": "9781568210384" + }, + "asin": "1568210388", + "ean": ["1568210388"], + "publication": "Jason Aronson, Inc. (1993), Edition: First Softcover Edition, 704 pages", + "date": "1993", + "summary": "The Classic Tales: 4,000 Years of Jewish Lore by Ellen Frankel (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530 .F68" + }, + "subject": { + "0": ["Bible. O.T.", + "Legends"], + "1": ["Hasidim", + "Legends"], + "3": ["Jewish folk literature"], + "5": ["Legends, Jewish"], + "7": ["Talmud", + "Legends"] + }, + "source": "amazon.com books", + "workcode": "560653", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "704 p.; 9.14 inches", + "height": "9.14 inches", + "thickness": "1.47 inches", + "length": "6.5 inches", + "dimensions": "9.14 x 6.5 x 1.47 inches", + "weight": "2.01943431992 pounds", + "pages": "704 " +}, +"256217261": { + "books_id": "256217261", + "title": "Blood Accusation: The Strange History of the Beiliss Case", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1299283675", + "isbn": { + "0": "1299283675", + "2": "9781299283671" + }, + "asin": "B0007DM8C8", + "ean": ["1299283675"], + "publication": "Knopf (1966), Edition: First Edition, 409 pages", + "date": "1966", + "summary": "Blood Accusation: The Strange History of the Beiliss Case by Maurice Samuel (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["343.523"], + "wording": ["Asia", + "Japan", + "Law", + "Military, defense, public property, public finance, tax, commerce (trade), industrial law", + "Social sciences"] + }, + "lcc": { + "code": "HV6535.R9" + }, + "subject": [["Be?ilis, Mendel?, 1874-1934"]], + "source": "amazon.com books", + "workcode": "1960480", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "409 p.", + "weight": "3 pounds", + "pages": "409 " +}, +"256217263": { + "books_id": "256217263", + "title": "The Dead Sea scrolls, 1947-1969", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wilson, Edmund", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wilson, Edmund", + "fl": "Edmund Wilson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FE89M", + "publication": "Oxford University Press (1970), Edition: Third Printing, 320 pages", + "date": "1970", + "summary": "The Dead Sea scrolls, 1947-1969 by Edmund Wilson (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.4"], + "wording": ["Old Testament (Tanakh)", + "Original texts and early versions; Codices", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM487 .W5" + }, + "subject": [["Bible", + "Antiquities"], + ["Dead Sea Scrolls"], + ["Dead Sea scrolls"], + ["Qumran community"]], + "awards": ["National Book Award", + "New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "385402", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "320 p.", + "weight": "0.78 pounds", + "pages": "320 " +}, +"256217299": { + "books_id": "256217299", + "title": "The World History of the Jewish People: Volume One: At the Dawn of Civilization. A Background of Biblical History", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Speiser, E.A. (Ephraim Avigdor) (Editor)", + "primaryauthorrole": "Author", + "secondaryauthor": "86 halftones, 2 line drawings, 6 Maps", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Speiser, E.A. (Ephraim Avigdor) (Editor)", + "fl": "E.A. (Ephraim Avigdor) (Editor) Speiser", + "role": "Author" + }, + { + "lf": "86 halftones, 2 line drawings, 6 Maps", + "fl": "2 line drawings 86 halftones, 6 Maps", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001THRHCW", + "publication": "Rutgers University Press (1963), Edition: First Edition", + "date": "1963", + "summary": "The World History of the Jewish People: Volume One: At the Dawn of Civilization. A Background of Biblical History by E.A. (Ephraim Avigdor) (Editor) Speiser (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537260", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"256217307": { + "books_id": "256217307", + "title": "Peace is Possible: Conversations with Arab and Israeli Leaders from 1988 to the Present", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abraham, S. Daniel", + "primaryauthorrole": "Author", + "secondaryauthor": "Clinton, Bill", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Abraham, S. Daniel", + "fl": "S. Daniel Abraham", + "role": "Author" + }, + { + "lf": "Clinton, Bill", + "fl": "Bill Clinton", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1557047022", + "isbn": { + "0": "1557047022", + "2": "9781557047021" + }, + "asin": "1557047022", + "ean": ["1557047022"], + "publication": "Newmarket (2006), Edition: First Edition, 240 pages", + "date": "2006", + "summary": "Peace is Possible: Conversations with Arab and Israeli Leaders from 1988 to the Present by S. Daniel Abraham (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.05"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .A3482" + }, + "subject": [["Arab-Israeli conflict", + "Peace"]], + "source": "amazon.com books", + "workcode": "1139191", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 0.75 inches", + "weight": "0.95 pounds", + "pages": "240 " +}, +"256217323": { + "books_id": "256217323", + "title": "The Fixer (FSG Classics)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Malamud, Bernard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Malamud, Bernard", + "fl": "Bernard Malamud", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374529388", + "isbn": { + "0": "0374529388", + "2": "9780374529383" + }, + "asin": "0374529388", + "ean": ["0374529388"], + "publication": "Farrar, Straus and Giroux (2004), 352 pages", + "date": "2004", + "summary": "The Fixer (FSG Classics) by Bernard Malamud (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3563.A4 F5" + }, + "subject": { + "0": ["Antisemitism", + "Fiction"], + "2": ["False testimony", + "Fiction"], + "4": ["Fiction in English"], + "5": ["Historical Fiction"], + "7": ["Historical fiction"], + "9": ["Jewish fiction"], + "11": ["Jews", + "Ukraine", + "Fiction"], + "13": ["Kiev (Ukraine)", + "Fiction"], + "15": ["Legal stories"], + "17": ["Trials (Murder)", + "Fiction"], + "19": ["fiction in English"], + "20": ["historical fiction"] + }, + "originaltitle": "The Fixer", + "awards": ["ALA Outstanding Books for the College Bound", + "Canon de la narrativa universal del siglo XX", + "Harenberg Buch der 1000 B\u00fccher", + "I Migliori Libri del '900", + "National Book Award", + "New York Times bestseller", + "Notable Books List", + "Publishers Weekly Bestseller", + "Pulitzer Prize", + "Union for Reform Judaism Significant Jewish Books"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "19733", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.88 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.88 inches", + "weight": "2.314853751 pounds", + "pages": "352 " +}, +"256217338": { + "books_id": "256217338", + "title": "The Romance of Hassidism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Minkin, Jacob S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Minkin, Jacob S", + "fl": "Jacob S Minkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1446528448", + "isbn": { + "0": "1446528448", + "2": "9781446528440" + }, + "asin": "1446528448", + "ean": ["1446528448"], + "publication": "Earle Press (2011), 408 pages", + "date": "2011", + "summary": "The Romance of Hassidism by Jacob S Minkin (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .M5" + }, + "subject": [["Hasidism"]], + "source": "amazon.com books", + "workcode": "4685796", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "408 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.91 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.91 inches", + "weight": "1.13978989454 pounds", + "pages": "408 " +}, +"256217353": { + "books_id": "256217353", + "title": "The God Who Hates Lies: Confronting & Rethinking Jewish Tradition", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hartman, David", + "primaryauthorrole": "Author", + "secondaryauthor": "Buckholtz, Charlie", + "secondaryauthorroles": "Primary Contributor", + "authors": [{ + "lf": "Hartman, David", + "fl": "David Hartman", + "role": "Author" + }, + { + "lf": "Buckholtz, Charlie", + "fl": "Charlie Buckholtz", + "role": "Primary Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580237908", + "isbn": { + "0": "1580237908", + "2": "9781580237901" + }, + "asin": "1580237908", + "ean": ["1580237908"], + "publication": "Jewish Lights (2014), Edition: 1, 208 pages", + "date": "2014", + "summary": "The God Who Hates Lies: Confronting & Rethinking Jewish Tradition by David Hartman (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.36"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion", + "[Ethics]"] + }, + "lcc": { + "code": "BM520.6 .H37" + }, + "source": "amazon.com books", + "workcode": "11245745", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 9 inches", + "height": "9 inches", + "thickness": "0.51968503884 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.51968503884 inches", + "weight": "0.65 pounds", + "pages": "208 " +}, +"256217370": { + "books_id": "256217370", + "title": "Legends of the Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ginzberg, Louis", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Ginzberg, Louis", + "fl": "Louis Ginzberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "156852322X", + "isbn": { + "0": "156852322X", + "2": "9781568523224" + }, + "asin": "156852322X", + "ean": ["156852322X"], + "publication": "Konecky & Konecky (2001), 647 pages", + "date": "2001", + "summary": "Legends of the Bible by Louis Ginzberg (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530.G512" + }, + "subject": { + "0": ["Aggada", + "Translations into English"], + "2": ["Bible. O.T.", + "Legends"], + "3": ["Legends, Jewish"], + "5": ["Midrash", + "Translations into English"] + }, + "awards": ["The New York Times Notable Books of the Year"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "179125", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "647 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 2 inches", + "weight": "2.25 pounds", + "pages": "647 " +}, +"256217401": { + "books_id": "256217401", + "title": "Israel, its life and culture, I-II,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pedersen, Johs.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pedersen, Johs.", + "fl": "Johs. Pedersen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00087DA16", + "publication": "H. Milford, Oxford university press; [etc., etc (1926)", + "date": "1926", + "summary": "Israel, its life and culture, I-II, by Johs. Pedersen (1926)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537265", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256217429": { + "books_id": "256217429", + "title": "American Synagogues: A Century of Architecture and Jewish Community", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gruber, Sam", + "primaryauthorrole": "Author", + "secondaryauthor": "Rocheleau, Paul|Tilden, Scott", + "secondaryauthorroles": "Photographer|Editor", + "authors": [{ + "lf": "Gruber, Sam", + "fl": "Sam Gruber", + "role": "Author" + }, + { + "lf": "Rocheleau, Paul", + "fl": "Paul Rocheleau", + "role": "Photographer" + }, + { + "lf": "Tilden, Scott", + "fl": "Scott Tilden", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0847825493", + "isbn": { + "0": "0847825493", + "2": "9780847825493" + }, + "asin": "0847825493", + "ean": ["0847825493"], + "publication": "Rizzoli (2003), Edition: First Edition, 240 pages", + "date": "2003", + "summary": "American Synagogues: A Century of Architecture and Jewish Community by Sam Gruber (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["726.30973"], + "wording": ["Architecture", + "Arts & recreation", + "Buildings for religious and related purposes", + "Synagogues and Jewish temples"] + }, + "lcc": { + "code": "NA5212 .G78" + }, + "source": "amazon.com books", + "workcode": "5213073", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 10.25 inches", + "height": "10.25 inches", + "thickness": "1 inch", + "length": "9.25 inches", + "dimensions": "10.25 x 9.25 x 1 inches", + "weight": "3.1 pounds", + "pages": "240 " +}, +"256217464": { + "books_id": "256217464", + "title": "Underdogs and Tricksters: A Prelude to Biblical Folklore (New Voices in Biblical Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Niditch, Susan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Niditch, Susan", + "fl": "Susan Niditch", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0062546058", + "isbn": { + "0": "0062546058", + "2": "9780062546050" + }, + "asin": "0062546058", + "ean": ["0062546058"], + "publication": "HarperCollins (1987), Edition: First Edition, 186 pages", + "date": "1987", + "summary": "Underdogs and Tricksters: A Prelude to Biblical Folklore (New Voices in Biblical Studies) by Susan Niditch (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.8"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "Special Topics", + "The Bible"] + }, + "lcc": { + "code": "BS625 .N53" + }, + "source": "amazon.com books", + "workcode": "378674", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "186 p.", + "weight": "0.8 pounds", + "pages": "186 " +}, +"256217477": { + "books_id": "256217477", + "title": "Contemporary Reform Jewish Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Martin Bernard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Martin Bernard", + "fl": "Martin Bernard", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000HU43AG", + "publication": "Quadrangle Books (1968)", + "date": "1968", + "summary": "Contemporary Reform Jewish Thought by Martin Bernard (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.C62" + }, + "subject": [["Reform Judaism"]], + "source": "amazon.com books", + "workcode": "1591745", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.02 pounds" +}, +"256217501": { + "books_id": "256217501", + "title": "One, by One, by One: Facing the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Miller, Judith", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Miller, Judith", + "fl": "Judith Miller", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671644726", + "isbn": { + "0": "0671644726", + "2": "9780671644727" + }, + "asin": "0671644726", + "ean": ["0671644726"], + "publication": "Simon & Schuster (1990), 319 pages", + "date": "1990", + "summary": "One, by One, by One: Facing the Holocaust by Judith Miller (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .M55" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)", + "Historiography"], + "2": ["Holocaust, Jewish (1939-1945)", + "Public opinion"] + }, + "source": "amazon.com books", + "workcode": "627804", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "319 p.; 9.53 inches", + "height": "9.53 inches", + "thickness": "6.37 inches", + "length": "1.08 inches", + "dimensions": "9.53 x 1.08 x 6.37 inches", + "weight": "1 pound", + "pages": "319 " +}, +"256217523": { + "books_id": "256217523", + "title": "Biblical Motifs: Origins and Transformations [Philip W. Lown Institute of Advanced Judaic Studies: Studies and Texts, Volume III].", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Alexander (Ed.) Altmann", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Alexander (Ed.) Altmann", + "fl": "Alexander (Ed.) Altmann", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B007BSGLZC", + "publication": "Harvard University Press (1966), Edition: First Edition", + "date": "1966", + "summary": "Biblical Motifs: Origins and Transformations [Philip W. Lown Institute of Advanced Judaic Studies: Studies and Texts, Volume III]. by Alexander (Ed.) Altmann (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.64"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1192.A4" + }, + "source": "amazon.com books", + "workcode": "12467207", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"256217530": { + "books_id": "256217530", + "title": "Remarkable Words with Astonishing Origins", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Train, John", + "primaryauthorrole": "Author", + "secondaryauthor": "Le-Tan, Pierre", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Train, John", + "fl": "John Train", + "role": "Author" + }, + { + "lf": "Le-Tan, Pierre", + "fl": "Pierre Le-Tan", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517541858", + "isbn": { + "0": "0517541858", + "2": "9780517541852" + }, + "asin": "0517541858", + "ean": ["0517541858"], + "publication": "Clarkson N. Potter, Inc. (1980), Edition: First Edition, 64 pages", + "date": "1980", + "summary": "Remarkable Words with Astonishing Origins by John Train (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["422"], + "wording": ["English & Old English languages", + "Etymology of standard English", + "Language"] + }, + "lcc": { + "code": "PE1574 .T77" + }, + "subject": [["English language", + "Etymology"]], + "originaltitle": "Bedlam, Boudoir & Brouhhaha 0r Remarkable Words With Astonishing Origins", + "genre": ["Nonfiction", + "General Nonfiction"], + "genre_id": ["20275895", + "1247"], + "source": "amazon.com books", + "workcode": "204233", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "64 p.", + "height": "7.1 inches", + "thickness": "0.5 inches", + "length": "5.2 inches", + "dimensions": "7.1 x 5.2 x 0.5 inches", + "weight": "1 pound", + "pages": "64 " +}, +"256217562": { + "books_id": "256217562", + "title": "The Seven Day Circle: The History and Meaning of the Week", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zerubavel, Eviatar", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zerubavel, Eviatar", + "fl": "Eviatar Zerubavel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226981657", + "isbn": { + "0": "0226981657", + "2": "9780226981659" + }, + "asin": "0226981657", + "ean": ["0226981657"], + "publication": "University of Chicago Press (1989), Edition: Reprint, 220 pages", + "date": "1989", + "summary": "The Seven Day Circle: The History and Meaning of the Week by Eviatar Zerubavel (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["394"], + "wording": ["Customs, etiquette & folklore", + "General customs", + "Social sciences"] + }, + "lcc": { + "code": "CE85 .Z47" + }, + "subject": [["Week", + "History"], + ["Week", + "Social aspects"]], + "source": "amazon.com books", + "workcode": "64804", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "220 p.; 9 inches", + "height": "9 inches", + "thickness": "0.6 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.6 inches", + "weight": "0.71429772888 pounds", + "pages": "220 " +}, +"256217567": { + "books_id": "256217567", + "title": "ISRAEL Its Life and Culture III-IV", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pedersen, Johs.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pedersen, Johs.", + "fl": "Johs. Pedersen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00DBJ5J76", + "publication": "Geoffrey Cumberlege / Oxford University Press (1959)", + "date": "1959", + "summary": "ISRAEL Its Life and Culture III-IV by Johs. Pedersen (1959)", + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS113.P42" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"], + ["Jews", + "Social life and customs"]], + "series": ["Israel, its Life and Culture"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "2255858", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"256217612": { + "books_id": "256217612", + "title": "A Practical Guide to Torah Learning", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Landesman, Dovid", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Landesman, Dovid", + "fl": "Dovid Landesman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568213204", + "isbn": { + "0": "1568213204", + "2": "9781568213200" + }, + "asin": "1568213204", + "ean": ["1568213204"], + "publication": "Jason Aronson, Inc. (1995), Edition: First Edition, 237 pages", + "date": "1995", + "summary": "A Practical Guide to Torah Learning by Dovid Landesman (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.107"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .L36" + }, + "subject": [["Jewish law", + "Interpretation and construction"], + ["Rabbinical literature", + "History and criticism"], + ["Talmud", + "Hermeneutics"], + ["Talmud", + "Introductions"]], + "source": "amazon.com books", + "workcode": "1353377", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "237 p.; 8.52 inches", + "height": "8.52 inches", + "thickness": "0.81 inches", + "length": "6.26 inches", + "dimensions": "8.52 x 6.26 x 0.81 inches", + "weight": "0.9700339528 pounds", + "pages": "237 " +}, +"256217649": { + "books_id": "256217649", + "title": "Messengers of God: Biblical Portraits and Legends", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "067154134X", + "isbn": { + "0": "067154134X", + "2": "9780671541347" + }, + "asin": "067154134X", + "ean": ["067154134X"], + "publication": "Simon & Schuster (1985), Edition: Reissue, 256 pages", + "date": "1985", + "summary": "Messengers of God: Biblical Portraits and Legends by Elie Wiesel (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.9"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM516 .W513" + }, + "subject": { + "0": ["Aggada"], + "2": ["Bible. O.T. Genesis", + "Legends"], + "3": ["Hasidic parables"], + "5": ["Job (Biblical figure)", + "Legends"], + "6": ["Midrash", + "Legends"], + "8": ["Moses (Biblical leader)", + "Legends"] + }, + "source": "amazon.com books", + "workcode": "225797", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.64 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.64 inches", + "weight": "0.661386786 pounds", + "pages": "256 " +}, +"256217673": { + "books_id": "256217673", + "title": "The Faith of the Maimonides", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Leibowitz, Yeshaiahu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Leibowitz, Yeshaiahu", + "fl": "Yeshaiahu Leibowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9650504656", + "isbn": { + "0": "9650504656", + "2": "9789650504656" + }, + "asin": "9650504656", + "ean": ["9650504656"], + "publication": "Jewish Lights Pub (1987), 90 pages", + "date": "1987", + "summary": "The Faith of the Maimonides by Yeshaiahu Leibowitz (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM514" + }, + "source": "amazon.com books", + "workcode": "2637739", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "90 p.; 9 inches", + "height": "9 inches", + "thickness": "0.25 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.25 inches", + "weight": "0.35 pounds", + "pages": "90 " +}, +"256217813": { + "books_id": "256217813", + "title": "The Altruistic Personality: Rescuers of Jews in Nazi Europe", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Oliner, Samuel P.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oliner, Samuel P.", + "fl": "Samuel P. Oliner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0029238293", + "isbn": { + "0": "0029238293", + "2": "9780029238295" + }, + "asin": "0029238293", + "ean": ["0029238293"], + "publication": "Touchstone (1992), Edition: Reprint, 448 pages", + "date": "1992", + "summary": "The Altruistic Personality: Rescuers of Jews in Nazi Europe by Samuel P. Oliner (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D810.J4 O418" + }, + "subject": { + "0": ["Altruism"], + "2": ["Motivation (Psychology)"], + "4": ["Righteous Gentiles in the Holocaust", + "Psychology"], + "6": ["World War, 1939-1945", + "Jews", + "Rescue"], + "7": ["World War, 1939-1945", + "Rescue"] + }, + "source": "amazon.com books", + "workcode": "437603", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 9 inches", + "height": "9 inches", + "thickness": "1.3 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.3 inches", + "weight": "1.18829159218 pounds", + "pages": "448 " +}, +"256217818": { + "books_id": "256217818", + "title": "King Solomon (English and German Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Thieberger, Frederic", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Thieberger, Frederic", + "fl": "Frederic Thieberger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0852222009", + "isbn": { + "0": "0852222009", + "2": "9780852222003" + }, + "asin": "0852222009", + "ean": ["0852222009"], + "publication": "Hebrew Pub Co (1978), 313 pages", + "date": "1978", + "summary": "King Solomon (English and German Edition) by Frederic Thieberger (1978)", + "language": ["German"], + "language_codeA": ["ger"], + "originallanguage": ["German"], + "originallanguage_codeA": ["ger"], + "ddc": { + "code": ["976.400431"], + "wording": ["History & geography", + "History of North America", + "South central United States", + "Statewide", + "Texas"] + }, + "lcc": { + "code": "BS580.S6 T5" + }, + "source": "amazon.com books", + "workcode": "9652044", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "313 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.25 x 5.75 x 1 inches", + "weight": "0.75 pounds", + "pages": "313 " +}, +"256217873": { + "books_id": "256217873", + "title": "The Modern Study of the Mishnah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "159244217X", + "isbn": { + "0": "159244217X", + "2": "9781592442171" + }, + "asin": "159244217X", + "ean": ["159244217X"], + "publication": "Wipf and Stock (2003), 312 pages", + "date": "2003", + "summary": "The Modern Study of the Mishnah by Jacob Neusner (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497.N48" + }, + "source": "amazon.com books", + "workcode": "15601857", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "312 p.; 9 inches", + "height": "9 inches", + "thickness": "0.71 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.71 inches", + "weight": "0.933 pounds", + "pages": "312 " +}, +"256217900": { + "books_id": "256217900", + "title": "Where Judaism Differed", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Abba Hillel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silver, Abba Hillel", + "fl": "Abba Hillel Silver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000FQ2OT4", + "publication": "Jewish Publication Society of America (1957), Edition: 2nd printing, 318 pages", + "date": "1957", + "summary": "Where Judaism Differed by Abba Hillel Silver (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560.S5" + }, + "subject": { + "0": ["Christianity and other religions", + "Judaism"], + "2": ["Judaism", + "Apologetic works"], + "4": ["Judaism", + "Christianity"], + "5": ["Judaism", + "Essence, genius, nature"], + "7": ["Judaism", + "Relations", + "Christianity"] + }, + "source": "amazon.com books", + "workcode": "1593977", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"256217910": { + "books_id": "256217910", + "title": "Messages from My Father: A Memoir", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trillin, Calvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Trillin, Calvin", + "fl": "Calvin Trillin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780374525088", + "isbn": ["9780374525088", + "0374525080"], + "asin": "0374525080", + "ean": ["0374525080"], + "publication": "Farrar, Straus and Giroux (1997), Edition: Reprint, 117 pages", + "date": "1997", + "summary": "Messages from My Father: A Memoir by Calvin Trillin (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["814.54"], + "wording": ["1945-1999", + "20th Century", + "American essays in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3570.R5 Z469" + }, + "subject": { + "0": ["Authors, American", + "20th century", + "Family relationships"], + "1": ["Authors, American", + "Family relationships"], + "2": ["Businessmen", + "Missouri", + "Kansas City", + "Biography"], + "3": ["Businesspeople", + "Kansas City", + "Biography"], + "4": ["Businesspeople", + "Missouri", + "Kansas City", + "Biography"], + "5": ["Fathers and sons", + "United States", + "Biography"], + "6": ["Kansas City (Mo.)", + "Biography"], + "8": ["Russian Americans", + "Kansas City", + "Social life and customs"], + "9": ["Russian Americans", + "Missouri", + "Kansas City", + "Social life and customs"], + "10": ["Trillin, Abe"], + "11": ["Trillin, Calvin", + "Family"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Biography & Memoir"], + "genre_id": ["1240"], + "source": "amazon.com books", + "workcode": "64305", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "117 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.3 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.3 inches", + "weight": "0.4 pounds", + "pages": "117 " +}, +"256218041": { + "books_id": "256218041", + "title": "Judaism for the modern age", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gordis, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DOCH2", + "publication": "Farrar, Straus, and Cudahy (1955), Edition: First Edition, 368 pages", + "date": "1955", + "summary": "Judaism for the modern age by Robert Gordis (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560.G65" + }, + "subject": [["Jews", + "United States"], + ["Judaism"]], + "source": "amazon.com books", + "workcode": "1172267", + "entrydate": "2024-01-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.", + "weight": "1 pound", + "pages": "368 " +}, +"265083823": { + "books_id": "265083823", + "title": "God Is a Verb: Kabbalah and the Practice of Mystical Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cooper, David A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cooper, David A.", + "fl": "David A. Cooper", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1573226947", + "isbn": { + "0": "1573226947", + "2": "9781573226943" + }, + "asin": "1573226947", + "ean": ["1573226947"], + "publication": "Riverhead Books (1998), Edition: Edition Unstated, 333 pages", + "date": "1998", + "summary": "God Is a Verb: Kabbalah and the Practice of Mystical Judaism by David A. Cooper (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.712"], + "wording": ["Experience and Psychology of Judaism", + "Jewish life and customs", + "Judaism", + "Kabbalah and Mysticism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .C66" + }, + "subject": [["Cabala"], + ["Judaism", + "Essence, genius, nature"], + ["Spiritual life", + "Judaism"]], + "source": "amazon.com books", + "workcode": "132938", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "333 p.; 9 inches", + "height": "9 inches", + "thickness": "0.9 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.9 inches", + "weight": "0.82452885988 pounds", + "pages": "333 " +}, +"265083831": { + "books_id": "265083831", + "title": "the shaping of america, volume three", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "smith, page", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "smith, page", + "fl": "page smith", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0070590176", + "isbn": { + "0": "0070590176", + "2": "9780070590175" + }, + "asin": "B000HTXG7I", + "ean": ["0070590176"], + "publication": "McGraw Hill (1980), Edition: First, 870 pages", + "date": "1980", + "summary": "the shaping of america, volume three by page smith (1980)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973"], + "wording": ["History & geography", + "History of North America", + "United States"] + }, + "lcc": { + "code": "E301.S6" + }, + "subject": [["United States", + "History", + "1783-1865"]], + "series": ["People's History"], + "awards": ["National Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "256509", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "870 p.", + "height": "9.4 inches", + "thickness": "1.9 inches", + "length": "6.5 inches", + "dimensions": "9.4 x 6.5 x 1.9 inches", + "weight": "1 pound", + "pages": "870 " +}, +"265083886": { + "books_id": "265083886", + "title": "Fixing God's Torah: The Accuracy of the Hebrew Bible Text in Jewish Law", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levy, B. Barry", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levy, B. Barry", + "fl": "B. Barry Levy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "019514113X", + "isbn": { + "0": "019514113X", + "2": "9780195141139" + }, + "asin": "019514113X", + "ean": ["019514113X"], + "publication": "Oxford University Press (2001), Edition: 1, 256 pages", + "date": "2001", + "summary": "Fixing God's Torah: The Accuracy of the Hebrew Bible Text in Jewish Law by B. Barry Levy (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.4"], + "wording": ["Old Testament (Tanakh)", + "Original texts and early versions; Codices", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS718 .L388" + }, + "source": "amazon.com books", + "workcode": "2665748", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 8.9 inches", + "height": "8.9 inches", + "thickness": "1.1 inches", + "length": "5.8 inches", + "dimensions": "8.9 x 5.8 x 1.1 inches", + "weight": "1.13 pounds", + "pages": "256 " +}, +"265083890": { + "books_id": "265083890", + "title": "Tools for Tosafos", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Perlmutter, Haim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Perlmutter, Haim", + "fl": "Haim Perlmutter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568710933", + "isbn": { + "0": "1568710933", + "2": "9781568710938" + }, + "asin": "1568710933", + "ean": ["1568710933"], + "publication": "Feldheim; 1St Edition edition (1996), Edition: First Edition, 148 pages", + "date": "1996", + "summary": "Tools for Tosafos by Haim Perlmutter (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501 .P47" + }, + "source": "amazon.com books", + "workcode": "1605871", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265083981": { + "books_id": "265083981", + "title": "Renewing the Covenant: A Kabbalistic Guide to Jewish Spirituality", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Leet Ph.D., Leonora", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Leet Ph.D., Leonora", + "fl": "Leonora Leet Ph.D.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0892817135", + "isbn": { + "0": "0892817135", + "2": "9780892817139" + }, + "asin": "0892817135", + "ean": ["0892817135"], + "publication": "Inner Traditions (1999), Edition: Original ed., 272 pages", + "date": "1999", + "summary": "Renewing the Covenant: A Kabbalistic Guide to Jewish Spirituality by Leonora Leet Ph.D. (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .L39" + }, + "subject": { + "0": ["Cabala"], + "2": ["Meditation", + "Judaism"], + "4": ["Prayer", + "Judaism"], + "6": ["Spiritual life", + "Judaism"] + }, + "source": "amazon.com books", + "workcode": "241542", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 9 inches", + "height": "9 inches", + "thickness": "0.8 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.8 inches", + "weight": "0.992080179 pounds", + "pages": "272 " +}, +"265084094": { + "books_id": "265084094", + "title": "The JPS Commentary on the Haggadah: Historical Introduction, Translation, and Commentary (JPS Bible Commentary)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Tabory, Joseph", + "primaryauthorrole": "Author", + "secondaryauthor": "Stern, David", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Tabory, Joseph", + "fl": "Joseph Tabory", + "role": "Author" + }, + { + "lf": "Stern, David", + "fl": "David Stern", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827608586", + "isbn": { + "0": "0827608586", + "2": "9780827608580" + }, + "asin": "0827608586", + "ean": ["0827608586"], + "publication": "JEWISH PUBLICATON SOCIETY (2008), Edition: Bilingual, 168 pages", + "date": "2008", + "summary": "The JPS Commentary on the Haggadah: Historical Introduction, Translation, and Commentary (JPS Bible Commentary) by Joseph Tabory (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM674.79 J69" + }, + "subject": [["Haggadot", + "Texts"], + ["Judaism", + "Liturgy", + "Texts"], + ["Sefer", + "Liturgy", + "Texts"]], + "source": "amazon.com books", + "workcode": "5122493", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "168 p.; 10 inches", + "height": "10 inches", + "thickness": "0.75 inches", + "length": "8 inches", + "dimensions": "10 x 8 x 0.75 inches", + "weight": "1.17 pounds", + "pages": "168 " +}, +"265084364": { + "books_id": "265084364", + "title": "CABALAH PRIMER: Introduction to English/Hebrew Cabalah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bernstein, Henrietta", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bernstein, Henrietta", + "fl": "Henrietta Bernstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0875165265", + "isbn": { + "0": "0875165265", + "2": "9780875165264" + }, + "asin": "0875165265", + "ean": ["0875165265"], + "publication": "DeVorss Publications (1984), Edition: First Edition, 192 pages", + "date": "1984", + "summary": "CABALAH PRIMER: Introduction to English/Hebrew Cabalah by Henrietta Bernstein (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.16"], + "wording": ["Jewish writings", + "Judaism", + "Kabbalah", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BF1623.C2 B47" + }, + "source": "amazon.com books", + "workcode": "132920", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "1 pound", + "pages": "192 " +}, +"265084398": { + "books_id": "265084398", + "title": "The Timetables of Jewish History: A Chronology of the Most Important People and Events in Jewish History", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gribetz, Judah", + "primaryauthorrole": "Author", + "secondaryauthor": "Greenstein, Edward L.|Stein, Regina", + "secondaryauthorroles": "Author|Author", + "authors": [{ + "lf": "Gribetz, Judah", + "fl": "Judah Gribetz", + "role": "Author" + }, + { + "lf": "Greenstein, Edward L.", + "fl": "Edward L. Greenstein", + "role": "Author" + }, + { + "lf": "Stein, Regina", + "fl": "Regina Stein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671640070", + "isbn": { + "0": "0671640070", + "2": "9780671640071" + }, + "asin": "0671640070", + "ean": ["0671640070"], + "publication": "Simon & Schuster (1993), Edition: First Edition, 808 pages", + "date": "1993", + "summary": "The Timetables of Jewish History: A Chronology of the Most Important People and Events in Jewish History by Judah Gribetz (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS114 .G68" + }, + "subject": [["Jews", + "History", + "Chronology"]], + "source": "amazon.com books", + "workcode": "53269", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "808 p.; 11.25 inches", + "height": "11.25 inches", + "thickness": "1.5 inches", + "length": "9 inches", + "dimensions": "11.25 x 9 x 1.5 inches", + "weight": "4.35 pounds", + "pages": "808 " +}, +"265084704": { + "books_id": "265084704", + "title": "At the Dawn of Civilization: A Background of Biblical History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Speiser, E. A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Speiser, E. A.", + "fl": "E. A. Speiser", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006DJJB2", + "publication": "Rutgers University Press (1964), 388 pages", + "date": "1964", + "summary": "At the Dawn of Civilization: A Background of Biblical History by E. A. Speiser (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117 DS108 .9" + }, + "subject": [["Egypt", + "History", + "To 332 B.C"], + ["Ethnology", + "Palestine"], + ["Iraq", + "Civilization", + "To 634"], + ["Palestine", + "Historical geography"]], + "series": ["The World History of the Jewish People"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3722786", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265084730": { + "books_id": "265084730", + "title": "Studies in the Weekly Parashah: Based on the Lessons of Nehama Leibowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sokolow, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sokolow, Moshe", + "fl": "Moshe Sokolow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9655240045", + "isbn": { + "0": "9655240045", + "2": "9789655240047" + }, + "asin": "9655240045", + "ean": ["9655240045"], + "publication": "Urim Publications (2007), 284 pages", + "date": "2007", + "summary": "Studies in the Weekly Parashah: Based on the Lessons of Nehama Leibowitz by Moshe Sokolow (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220"], + "wording": ["Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2 .S658" + }, + "source": "amazon.com books", + "workcode": "9924391", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "284 p.; 9.1 inches", + "height": "9.0999818 inches", + "thickness": "0.7999984 inches", + "length": "6.7999864 inches", + "dimensions": "9.0999818 x 6.7999864 x 0.7999984 inches", + "weight": "1.41977696728 pounds", + "pages": "284 " +}, +"265084830": { + "books_id": "265084830", + "title": "Studies in the History of the Sanhedrin", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mantel, Hugo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mantel, Hugo", + "fl": "Hugo Mantel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674850203", + "isbn": { + "0": "0674850203", + "2": "9780674850200" + }, + "asin": "0674850203", + "ean": ["0674850203"], + "publication": "Harvard University Press (1961), Edition: First Edition, 389 pages", + "date": "1961", + "summary": "Studies in the History of the Sanhedrin by Hugo Mantel (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM655 .M3" + }, + "source": "amazon.com books", + "workcode": "3111839", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "389 p.", + "weight": "1.75 pounds", + "pages": "389 " +}, +"265084839": { + "books_id": "265084839", + "title": "Patriarchs: The World History of the Jewish People, Vol. 2", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mazar, Benjamin", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Mazar, Benjamin", + "fl": "Benjamin Mazar", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000MXU848", + "publication": "Rutger's University Press (1970), 306 pages", + "date": "1970", + "summary": "Patriarchs: The World History of the Jewish People, Vol. 2 by Benjamin Mazar (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117 DS121 .W6" + }, + "subject": { + "0": ["Jews", + "History"], + "1": ["Jews", + "History", + "To 1200 B.C"], + "2": ["Middle East", + "History", + "To 622"], + "4": ["Palestine", + "History", + "To 70 A.D"], + "6": ["Patriarchs (Bible)"] + }, + "series": ["The World History of the Jewish People"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4267005", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265084860": { + "books_id": "265084860", + "title": "The Survivor: An Anatomy of Life in the Death Camps", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Des Pres, Terrence", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Des Pres, Terrence", + "fl": "Terrence Des Pres", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195027035", + "isbn": { + "0": "0195027035", + "2": "9780195027037" + }, + "asin": "0195027035", + "ean": ["0195027035"], + "publication": "Oxford University Press (1980), Edition: Reprint, 240 pages", + "date": "1980", + "summary": "The Survivor: An Anatomy of Life in the Death Camps by Terrence Des Pres (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D810.J4 D474" + }, + "subject": { + "0": ["Concentration camps", + "Psychological aspects"], + "2": ["Holocaust, Jewish (1939-1945)", + "Psychological aspects"] + }, + "awards": ["National Jewish Book Award", + "Notable Books List"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "130767", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 8 x 5.42 inches", + "height": "5.42 inches", + "thickness": "0.44 inches", + "length": "8 inches", + "dimensions": "5.42 x 8 x 0.44 inches", + "weight": "0.47178924068 pounds", + "pages": "240 " +}, +"265084867": { + "books_id": "265084867", + "title": "Wanderings: History of the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Potok, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Potok, Chaim", + "fl": "Chaim Potok", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0449215822", + "isbn": { + "0": "0449215822", + "2": "9780449215821" + }, + "asin": "0449215822", + "ean": ["0449215822"], + "publication": "Fawcett (1987), Edition: 61279th, 576 pages", + "date": "1987", + "summary": "Wanderings: History of the Jews by Chaim Potok (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS117.P65" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"] + }, + "awards": ["New York Times bestseller", + "Torchlight List"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "43106", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "576 p.; 6.75 inches", + "height": "6.75 inches", + "thickness": "1.25 inches", + "length": "4.25 inches", + "dimensions": "6.75 x 4.25 x 1.25 inches", + "weight": "0.6 pounds", + "pages": "576 " +}, +"265084885": { + "books_id": "265084885", + "title": "Young Moshe's Diary:", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Flinker, Moishe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Flinker, Moishe", + "fl": "Moishe Flinker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0030CKWPS", + "publication": "Yad Vashem (1971), Edition: 2nd prt.", + "date": "1971", + "summary": "Young Moshe's Diary: by Moishe Flinker (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D811.F5453" + }, + "source": "amazon.com books", + "workcode": "1740453", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.6 pounds" +}, +"265084909": { + "books_id": "265084909", + "title": "Who's who in American Jewry. 1926. 1926 [Leather Bound]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Anonymous", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Anonymous", + "fl": "Anonymous", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0B41Y9N21", + "publication": "Generic (2022), 686 pages", + "date": "2022", + "summary": "Who's who in American Jewry. 1926. 1926 [Leather Bound] by Anonymous (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32340239", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265084911": { + "books_id": "265084911", + "title": "Winston Churchill on Jewish problems", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabinowicz, Oscar K", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabinowicz, Oscar K", + "fl": "Oscar K Rabinowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006AWKCA", + "publication": "T. Yoseloff (1960), 231 pages", + "date": "1960", + "summary": "Winston Churchill on Jewish problems by Oscar K Rabinowicz (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["323.1"], + "wording": ["Civil and political rights", + "Minority Politics", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DA566.C5 R3" + }, + "subject": [["Antisemitism"], + ["Jews", + "Politics and government"]], + "source": "amazon.com books", + "workcode": "4521578", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265084934": { + "books_id": "265084934", + "title": "In Hitler's Shadow: An Israeli's Amazing Journey Inside Germany's Neo-Nazi Movement", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Taylor, Nick", + "primaryauthorrole": "Author", + "secondaryauthor": "Svoray, Yaron", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Taylor, Nick", + "fl": "Nick Taylor", + "role": "Author" + }, + { + "lf": "Svoray, Yaron", + "fl": "Yaron Svoray", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385472846", + "isbn": { + "0": "0385472846", + "2": "9780385472845" + }, + "asin": "0385472846", + "ean": ["0385472846"], + "publication": "Nan A. Talese / Doubleday (1994), Edition: First Edition, 275 pages", + "date": "1994", + "summary": "In Hitler's Shadow: An Israeli's Amazing Journey Inside Germany's Neo-Nazi Movement by Nick Taylor (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.087"], + "wording": ["East And West 1945-1990", + "Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DD290 .S89" + }, + "subject": [["Germany", + "Ethnic relations"], + ["Germany", + "Politics and government", + "1990-"], + ["Israelis", + "Germany", + "Politics and government"], + ["National characteristics, German"], + ["Nationalism", + "Germany"], + ["Racism", + "Germany"]], + "source": "amazon.com books", + "workcode": "2005547", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "275 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.75 inches", + "dimensions": "9.5 x 6.75 x 1.5 inches", + "weight": "1.4 pounds", + "pages": "275 " +}, +"265084977": { + "books_id": "265084977", + "title": "The Holocaust: A History of the Jews of Europe During the Second World War", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gilbert, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gilbert, Martin", + "fl": "Martin Gilbert", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805003487", + "isbn": { + "0": "0805003487", + "2": "9780805003482" + }, + "asin": "0805003487", + "ean": ["0805003487"], + "publication": "Holt Paperbacks (1987), Edition: Reprint, 976 pages", + "date": "1987", + "summary": "The Holocaust: A History of the Jews of Europe During the Second World War by Martin Gilbert (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.531503924"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 G522" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Holocaust, Jewish (1939-1945)", + "Maps"], + "3": ["Holocaust, Jewish (1939-1945)", + "Pictorial works"], + "5": ["Jews", + "Europe", + "History"], + "7": ["Jews", + "Europe", + "History", + "Pictorial works"], + "9": ["Jews Genocide 1939-1945"] + }, + "awards": ["501 Must-Read Books (Emma Beare, 2006)"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "9738", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "976 p.; 8.92 inches", + "height": "8.92 inches", + "thickness": "1.74 inches", + "length": "6.2700662 inches", + "dimensions": "8.92 x 6.2700662 x 1.74 inches", + "weight": "2.5573622392 pounds", + "pages": "976 " +}, +"265085059": { + "books_id": "265085059", + "title": "Denying the Holocaust: The Growing Assault on Truth and Memory", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lipstadt, Deborah E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lipstadt, Deborah E.", + "fl": "Deborah E. Lipstadt", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780452272743", + "isbn": ["9780452272743", + "0452272742"], + "asin": "0452272742", + "ean": ["0452272742"], + "publication": "Penguin Publishing Group (1994), Edition: Reprint, 304 pages", + "date": "1994", + "summary": "Denying the Holocaust: The Growing Assault on Truth and Memory by Deborah E. Lipstadt (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .L57" + }, + "subject": { + "0": ["Antisemitism", + "United States", + "History"], + "1": ["Antisemitism", + "United States", + "History", + "20th century"], + "2": ["Holocaust denial"], + "4": ["Holocaust, Jewish (1939-1945)", + "Historiography"] + }, + "source": "amazon.com books", + "workcode": "20688", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9 inches", + "height": "9 inches", + "thickness": "0.76 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.76 inches", + "weight": "0.7125 pounds", + "pages": "304 " +}, +"265085222": { + "books_id": "265085222", + "title": "\"Our Crowd\": The Great Jewish Families of New York", + "sortcharacter": "2", + "public": "true", + "primaryauthor": "Birmingham, Stephen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Birmingham, Stephen", + "fl": "Stephen Birmingham", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1493057758", + "isbn": { + "0": "1493057758", + "2": "9781493057757" + }, + "asin": "1493057758", + "ean": ["1493057758"], + "publication": "Lyons Press (2021), 448 pages", + "date": "2021", + "summary": "\"Our Crowd\": The Great Jewish Families of New York by Stephen Birmingham (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "F128.J5 B5" + }, + "subject": { + "0": ["Jewish bankers", + "New York"], + "1": ["Jewish bankers", + "New York (State)", + "New York"], + "2": ["Jews", + "New York", + "Social life and customs"], + "3": ["Jews", + "New York (N.Y.)", + "Social life and customs"], + "4": ["Jews", + "New York (State)", + "New York", + "Social life and customs"], + "5": ["New York (N.Y.", + "Ethnic relations"], + "7": ["New York (N.Y.)", + "Ethnic relations"], + "9": ["New York (N.Y.)", + "Social life and customs"], + "10": ["Upper class", + "New York"], + "11": ["Upper class", + "New York (State)", + "New York"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "235918", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 9 inches", + "height": "9 inches", + "thickness": "1.12 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.12 inches", + "weight": "1.49473413636 pounds", + "pages": "448 " +}, +"265085342": { + "books_id": "265085342", + "title": "Torah Today: A Renewed Encounter with Scripture (Jewish History, Life, and Culture (Paperback))", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Peli, Pinchas H.", + "primaryauthorrole": "Author", + "secondaryauthor": "Schulweis, Harold M.", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Peli, Pinchas H.", + "fl": "Pinchas H. Peli", + "role": "Author" + }, + { + "lf": "Schulweis, Harold M.", + "fl": "Harold M. Schulweis", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0292706723", + "isbn": { + "0": "0292706723", + "2": "9780292706729" + }, + "asin": "0292706723", + "ean": ["0292706723"], + "publication": "University of Texas Press (2004), Edition: 2nd, 275 pages", + "date": "2004", + "summary": "Torah Today: A Renewed Encounter with Scripture (Jewish History, Life, and Culture (Paperback)) by Pinchas H. Peli (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.106"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225 .P45" + }, + "subject": [["Bible. O.T. Pentateuch", + "Meditations"]], + "source": "amazon.com books", + "workcode": "670398", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "275 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.75 inches", + "weight": "0.81350574678 pounds", + "pages": "275 " +}, +"265085531": { + "books_id": "265085531", + "title": "The Jewish Presence: Essays on Identity and History (A Harvest/Hbj Book)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dawidowicz, Lucy S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dawidowicz, Lucy S.", + "fl": "Lucy S. Dawidowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0156462214", + "isbn": { + "0": "0156462214", + "2": "9780156462211" + }, + "asin": "0156462214", + "ean": ["0156462214"], + "publication": "Harcourt (1978), Edition: 1", + "date": "1978", + "summary": "The Jewish Presence: Essays on Identity and History (A Harvest/Hbj Book) by Lucy S. Dawidowicz (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS143.D36" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Jews", + "Identity"], + "4": ["Jews", + "United States"], + "6": ["Judaism", + "United States"], + "8": ["United States", + "Social conditions"], + "10": ["Yiddish language", + "United States"] + }, + "source": "amazon.com books", + "workcode": "2903102", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.73 pounds" +}, +"265085651": { + "books_id": "265085651", + "title": "White nights: The story of a prisoner in Russia", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Begin, Menachem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Begin, Menachem", + "fl": "Menachem Begin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060102896", + "isbn": { + "0": "0060102896", + "2": "9780060102890" + }, + "asin": "0060102896", + "ean": ["0060102896"], + "publication": "Harper & Row,[1979] c1977. (1979), Edition: First US, 240 pages", + "date": "1979", + "summary": "White nights: The story of a prisoner in Russia by Menachem Begin (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["947.084"], + "wording": ["1855-", + "1917-1953 ; Communist period", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS126.B33 A313" + }, + "subject": { + "0": ["Begin, Menachem, 1913-", + "Imprisonment"], + "1": ["Begin, Menachem, 1913-1992", + "Imprisonment"], + "2": ["Political prisoners", + "Soviet Union", + "Biography"], + "4": ["Prime ministers", + "Israel", + "Biography"], + "6": ["Zionists", + "Poland", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "392241", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.", + "height": "8.3 inches", + "thickness": "1 inch", + "length": "5.8 inches", + "dimensions": "8.3 x 5.8 x 1 inches", + "weight": "1 pound", + "pages": "240 " +}, +"265085700": { + "books_id": "265085700", + "title": "Humboldt's Gift (Penguin Classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bellow, Saul", + "primaryauthorrole": "Author", + "secondaryauthor": "Eugenides, Jeffrey", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Bellow, Saul", + "fl": "Saul Bellow", + "role": "Author" + }, + { + "lf": "Eugenides, Jeffrey", + "fl": "Jeffrey Eugenides", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0143105477", + "isbn": { + "0": "0143105477", + "2": "9780143105473" + }, + "asin": "0143105477", + "ean": ["0143105477"], + "publication": "Penguin Classics (2008), Edition: Penguin Classics, 512 pages", + "date": "2008", + "summary": "Humboldt's Gift (Penguin Classics) by Saul Bellow (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.52"], + "wording": ["1900-1945", + "1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3503.E4488 H8" + }, + "subject": { + "0": ["Fiction in English"], + "1": ["Friendship", + "Fiction"], + "3": ["Friendship", + "United States", + "Fiction"], + "4": ["Poets", + "Fiction"], + "6": ["Poets, American", + "Fiction"], + "7": ["fiction in English"] + }, + "originaltitle": "Humbolt's Gift", + "awards": ["1,000 Books to Read Before You Die Page-A-Day Calendar", + "1001 Books You Must Read Before You Die", + "1001 boeken die je gelezen moet hebben!", + "Anthony Burgess: 99 Novels", + "Daily Telegraph's 100 Books of the Century, 1900-1999", + "National Book Award", + "New York Times bestseller", + "Nobel Prize in Literature", + "Notable Books List", + "Publishers Weekly Bestseller", + "Pulitzer Prize", + "Quintessential American Fiction, According to the Rest of the World", + "Society of Midland Authors Award", + "The Guardian 1000 Novels Everyone Must Read", + "The New Lifetime Reading Plan With Going Further", + "The New York Times Best Books of the Year"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "10094", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "512 p.; 7.75 inches", + "height": "7.75 inches", + "thickness": "0.9 inches", + "length": "5.05 inches", + "dimensions": "7.75 x 5.05 x 0.9 inches", + "weight": "0.77602716224 pounds", + "pages": "512 " +}, +"265085766": { + "books_id": "265085766", + "title": "A Student's Obligation: Advice from the Rebbe of the Warsaw Ghetto", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Rabbi Kalonymous Kalman Schapira", + "primaryauthorrole": "Author", + "secondaryauthor": "Micha Odenheimer", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Rabbi Kalonymous Kalman Schapira", + "fl": "Rabbi Kalonymous Kalman Schapira", + "role": "Author" + }, + { + "lf": "Micha Odenheimer", + "fl": "Micha Odenheimer", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568215177", + "isbn": { + "0": "1568215177", + "2": "9781568215174" + }, + "asin": "1568215177", + "ean": ["1568215177"], + "publication": "Jason Aronson, Inc. (1995), 262 pages", + "date": "1995", + "summary": "A Student's Obligation: Advice from the Rebbe of the Warsaw Ghetto by Rabbi Kalonymous Kalman Schapira (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM727 .S53" + }, + "source": "amazon.com books", + "workcode": "1365194", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "262 p.; 10.04 inches", + "height": "10.04 inches", + "thickness": "0.77 inches", + "length": "4.74 inches", + "dimensions": "10.04 x 4.74 x 0.77 inches", + "weight": "0.849992251141 pounds", + "pages": "262 " +}, +"265085775": { + "books_id": "265085775", + "title": "Modern Hebrew Literature", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Alter, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Alter, Robert", + "fl": "Robert Alter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "3110101025", + "isbn": { + "0": "3110101025", + "2": "9783110101027" + }, + "asin": "0874412358", + "ean": ["0874412358"], + "publication": "Behrman House (1975), Edition: First Edition, 398 pages", + "date": "1975", + "summary": "Modern Hebrew Literature by Robert Alter (1975)", + "language": ["English", + "German"], + "language_codeA": ["eng", + "ger"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ1 PJ5059 .E8" + }, + "subject": [["Hebreeuws"], + ["Hebrew literature, Modern", + "History and criticism", + "Periodicals"], + ["Jews", + "Fiction"], + ["Jews", + "Social life and customs", + "Fiction"], + ["Letterkunde"], + ["Literatuur"], + ["Short stories, Hebrew", + "Translations into English"]], + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "998873", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "398 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 1 inches", + "weight": "0.97 pounds", + "pages": "398 " +}, +"265085785": { + "books_id": "265085785", + "title": "Tales of Elijah the Prophet", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schram, Peninnah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schram, Peninnah", + "fl": "Peninnah Schram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685807", + "isbn": { + "0": "0876685807", + "2": "9780876685808" + }, + "asin": "0876685807", + "ean": ["0876685807"], + "publication": "Jason Aronson, Inc. (1991), Edition: First Edition, First Printing, 309 pages", + "date": "1991", + "summary": "Tales of Elijah the Prophet by Peninnah Schram (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BS580.E4 S36" + }, + "subject": [["Jewish folk literature"], + ["Legends, Jewish"]], + "source": "amazon.com books", + "workcode": "1685954", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "309 p.; 9.24 inches", + "height": "9.24 inches", + "thickness": "1.24 inches", + "length": "8.5 inches", + "dimensions": "9.24 x 8.5 x 1.24 inches", + "weight": "1.5399950387486 pounds", + "pages": "309 " +}, +"265085808": { + "books_id": "265085808", + "title": "The Accidental Empire: Israel and the Birth of the Settlements, 1967-1977", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gorenberg, Gershom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gorenberg, Gershom", + "fl": "Gershom Gorenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805082417", + "isbn": { + "0": "0805082417", + "2": "9780805082418" + }, + "asin": "0805082417", + "ean": ["0805082417"], + "publication": "Holt Paperbacks (2007), Edition: First Edition, 480 pages", + "date": "2007", + "summary": "The Accidental Empire: Israel and the Birth of the Settlements, 1967-1977 by Gershom Gorenberg (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "HD850.Z63 G67" + }, + "subject": [["Israel", + "Politics and government", + "1967-1993"], + ["Jews", + "Colonization", + "Gaza Strip"], + ["Jews", + "Colonization", + "West Bank"], + ["Land settlement", + "Gaza Strip", + "Government policy", + "Israel"], + ["Land settlement", + "West Bank", + "Government policy", + "Israel"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "705068", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "480 p.; 9 inches", + "height": "9 inches", + "thickness": "1.08 inches", + "length": "5.999988 inches", + "dimensions": "9 x 5.999988 x 1.08 inches", + "weight": "1.45 pounds", + "pages": "480 " +}, +"265085812": { + "books_id": "265085812", + "title": "The Leo Frank Case (Brown Thrasher Books Ser.)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dinnerstein, Leonard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dinnerstein, Leonard", + "fl": "Leonard Dinnerstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0820331791", + "isbn": { + "0": "0820331791", + "2": "9780820331799" + }, + "asin": "0820331791", + "ean": ["0820331791"], + "publication": "University of Georgia Press (2008), Edition: 2, 280 pages", + "date": "2008", + "summary": "The Leo Frank Case (Brown Thrasher Books Ser.) by Leonard Dinnerstein (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["345.73"], + "wording": ["Criminal Law", + "Law", + "North America", + "Social sciences", + "United States"] + }, + "lcc": { + "code": "KF224.F7 D56" + }, + "subject": [["Frank, Leo, 1884-1915", + "Trials, litigation, etc"], + ["Trials (Murder)", + "Georgia", + "Atlanta"]], + "awards": ["Anisfield-Wolf Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "46520", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "280 p.; 8.5 inches", + "height": "8.499983 inches", + "thickness": "0.7999984 inches", + "length": "5.499989 inches", + "dimensions": "8.499983 x 5.499989 x 0.7999984 inches", + "weight": "0.87523518014 pounds", + "pages": "280 " +}, +"265085837": { + "books_id": "265085837", + "title": "The Rise of David Levinsky", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cahan, Abraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cahan, Abraham", + "fl": "Abraham Cahan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0B3NZXP9F", + "ean": ["9798836315474"], + "publication": "Independently published (2022), 242 pages", + "date": "2022", + "summary": "The Rise of David Levinsky by Abraham Cahan (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.4"], + "wording": ["American fiction in English", + "American literature in English", + "Later 19th Century 1861-1900", + "Literature"] + }, + "lcc": { + "code": "PS3505.A254 R57" + }, + "subject": { + "0": ["Assimilation (Sociology)", + "Fiction"], + "2": ["Clothing trade", + "Fiction"], + "4": ["Immigrants", + "Fiction"], + "6": ["Jewish fiction"], + "8": ["Jewish men", + "Fiction"], + "10": ["Jews", + "New York", + "Fiction"], + "11": ["Jews", + "New York (State)", + "New York", + "Fiction"], + "12": ["Jews", + "Russia", + "Fiction"], + "14": ["Large Type Books"], + "15": ["Large type books"], + "16": ["Lower East Side (New York, N.Y.)", + "Fiction"], + "18": ["Millionaires", + "Fiction"], + "20": ["Psychological fiction"] + }, + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges", + "Union for Reform Judaism Significant Jewish Books"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "98242", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "242 p.; 10 inches", + "height": "10 inches", + "thickness": "0.55 inches", + "length": "7 inches", + "dimensions": "10 x 7 x 0.55 inches", + "pages": "242 " +}, +"265085854": { + "books_id": "265085854", + "title": "Holocaust: Religious and Philosophical Implications", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, John", + "primaryauthorrole": "Editor", + "secondaryauthor": "Berenbaum, Michael", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Roth, John", + "fl": "John Roth", + "role": "Editor" + }, + { + "lf": "Berenbaum, Michael", + "fl": "Michael Berenbaum", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1557782121", + "isbn": { + "0": "1557782121", + "2": "9781557782120" + }, + "asin": "1557782121", + "ean": ["1557782121"], + "publication": "Paragon House (1998), Edition: 1, 390 pages", + "date": "1998", + "summary": "Holocaust: Religious and Philosophical Implications by John Roth (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .H649" + }, + "subject": { + "0": ["Holocaust (Jewish theology)"], + "2": ["Holocaust, Jewish (1939-1945)"], + "4": ["Holocaust, Jewish (1939-1945)", + "Influence"] + }, + "source": "amazon.com books", + "workcode": "249368", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "390 p.; 9.04 inches", + "height": "9.04 inches", + "thickness": "0.88 inches", + "length": "5.92 inches", + "dimensions": "9.04 x 5.92 x 0.88 inches", + "weight": "1.3 pounds", + "pages": "390 " +}, +"265085863": { + "books_id": "265085863", + "title": "The Holocaust: The Fate of European Jewry, 1932-1945 (Studies in Jewish History)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Yahil, Leni", + "primaryauthorrole": "Author", + "secondaryauthor": "Friedman, Ina|Galai, Haya", + "secondaryauthorroles": "Author|Author", + "authors": [{ + "lf": "Yahil, Leni", + "fl": "Leni Yahil", + "role": "Author" + }, + { + "lf": "Friedman, Ina", + "fl": "Ina Friedman", + "role": "Author" + }, + { + "lf": "Galai, Haya", + "fl": "Haya Galai", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "019504522X", + "isbn": { + "0": "019504522X", + "2": "9780195045222" + }, + "asin": "019504522X", + "ean": ["019504522X"], + "publication": "Oxford University Press (1990), Edition: 1, 832 pages", + "date": "1990", + "summary": "The Holocaust: The Fate of European Jewry, 1932-1945 (Studies in Jewish History) by Leni Yahil (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .Y3413" + }, + "subject": { + "0": ["Germany", + "Ethnic relations"], + "2": ["Holocaust, Jewish (1939-1945)"], + "4": ["Jews", + "Germany", + "History"], + "5": ["Jews", + "Germany", + "History", + "1933-1945"] + }, + "originaltitle": "Sho'ah", + "awards": ["National Jewish Book Award", + "Shazar Prize"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "339723", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "832 p.; 9.59 x 2.01 inches", + "height": "2.01 inches", + "thickness": "6.5 inches", + "length": "9.59 inches", + "dimensions": "2.01 x 9.59 x 6.5 inches", + "weight": "2.86 pounds", + "pages": "832 " +}, +"265085876": { + "books_id": "265085876", + "title": "The Golden Tradition: Jewish Life and Thought in Eastern Europe (Modern Jewish History)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dawidowicz, Lucy S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dawidowicz, Lucy S.", + "fl": "Lucy S. Dawidowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0815604238", + "isbn": { + "0": "0815604238", + "2": "9780815604235" + }, + "asin": "0815604238", + "ean": ["0815604238"], + "publication": "Syracuse University Press (1996), Edition: 1st Syracuse University Press ed, 512 pages", + "date": "1996", + "summary": "The Golden Tradition: Jewish Life and Thought in Eastern Europe (Modern Jewish History) by Lucy S. Dawidowicz (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.0004924"], + "wording": ["History & geography", + "History of Europe", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.E9 A13" + }, + "subject": { + "0": ["Europe, Eastern", + "Ethnic relations"], + "2": ["Jews", + "Europe, Eastern"], + "4": ["Jews", + "Europe, Eastern", + "Biography"], + "6": ["Jews", + "Europe, Eastern", + "Intellectual life"], + "8": ["Judaism", + "Europe, Eastern"] + }, + "source": "amazon.com books", + "workcode": "86266", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "512 p.; 8 inches", + "height": "8 inches", + "thickness": "0.66 inches", + "length": "5.5 inches", + "dimensions": "8 x 5.5 x 0.66 inches", + "weight": "1.25 pounds", + "pages": "512 " +}, +"265085897": { + "books_id": "265085897", + "title": "Witness to the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eisenberg, Azriel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eisenberg, Azriel", + "fl": "Azriel Eisenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0829804323", + "isbn": { + "0": "0829804323", + "2": "9780829804324" + }, + "asin": "0829804323", + "ean": ["0829804323"], + "publication": "Pilgrim Press (1981), Edition: Not Indicated, 649 pages", + "date": "1981", + "summary": "Witness to the Holocaust by Azriel Eisenberg (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D810.J4 W57" + }, + "source": "amazon.com books", + "workcode": "7898565", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "649 p.", + "height": "8.9 inches", + "thickness": "1.73 inches", + "length": "6.14 inches", + "dimensions": "8.9 x 6.14 x 1.73 inches", + "weight": "3 pounds", + "pages": "649 " +}, +"265085959": { + "books_id": "265085959", + "title": "State in the Making; Translated From the Hebrew By Julian Meltzer", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Horowitz, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Horowitz, David", + "fl": "David Horowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001VGY224", + "publication": "Knopf", + "summary": "State in the Making; Translated From the Hebrew By Julian Meltzer by David Horowitz", + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.H6" + }, + "source": "amazon.com books", + "workcode": "2191140", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265085971": { + "books_id": "265085971", + "title": "A Holocaust Reader Edited with Introductions and Notes, By Lucy S. Dawidowicz", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Dawidowicz, Lucy S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dawidowicz, Lucy S.", + "fl": "Lucy S. Dawidowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00AT2ZU2W", + "publication": "Behrman House, 397 pages", + "summary": "A Holocaust Reader Edited with Introductions and Notes, By Lucy S. Dawidowicz by Lucy S. Dawidowicz", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 H65" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "History", + "Sources"], + ["Holocaust, Jewish (1939-1945)", + "Sources"]], + "source": "amazon.com books", + "workcode": "3200351", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265085991": { + "books_id": "265085991", + "title": "Zakhor: Jewish History and Jewish Memory (The Samuel and Althea Stroum Lectures in Jewish Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yerushalmi, Yosef Hayim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yerushalmi, Yosef Hayim", + "fl": "Yosef Hayim Yerushalmi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0295975199", + "isbn": { + "0": "0295975199", + "2": "9780295975191" + }, + "asin": "0295975199", + "ean": ["027471339X"], + "publication": "University of Washington (2011), Edition: Reissue, 191 pages", + "date": "2011", + "summary": "Zakhor: Jewish History and Jewish Memory (The Samuel and Althea Stroum Lectures in Jewish Studies) by Yosef Hayim Yerushalmi (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115 .Y47" + }, + "subject": [["Jews", + "Historiography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "546463", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "191 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.48 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.48 inches", + "weight": "0.54895103238 pounds", + "pages": "191 " +}, +"265085995": { + "books_id": "265085995", + "title": "Only Human--The Eternal Alibi. From the Sermons of Rabbi Milton Steinberg", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Milton", + "primaryauthorrole": "Author", + "secondaryauthor": "Mandelbaum, Bernard", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Steinberg, Milton", + "fl": "Milton Steinberg", + "role": "Author" + }, + { + "lf": "Mandelbaum, Bernard", + "fl": "Bernard Mandelbaum", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EKIW4", + "publication": "Bloch Publishing Company (1963), 169 pages", + "date": "1963", + "summary": "Only Human--The Eternal Alibi. From the Sermons of Rabbi Milton Steinberg by Milton Steinberg (1963)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": [], + "source": "amazon.com books", + "workcode": "4062063", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "169 p.", + "weight": "1.28 pounds", + "pages": "169 " +}, +"265086012": { + "books_id": "265086012", + "title": "Letters to an American Jewish Friend: a Zionist's Polemic", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Halkin, Hillel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Halkin, Hillel", + "fl": "Hillel Halkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652296309", + "isbn": { + "0": "9652296309", + "2": "9789652296306" + }, + "asin": "9652296309", + "ean": ["9652296309"], + "publication": "Gefen Publishing House (2013), 292 pages", + "date": "2013", + "summary": "Letters to an American Jewish Friend: a Zionist's Polemic by Hillel Halkin (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149.H32" + }, + "subject": [["Israel"], + ["Jews", + "Politics and government", + "1948-"], + ["Zionism"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "239631", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "292 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.7 inches", + "length": "5.8 inches", + "dimensions": "8.5 x 5.8 x 0.7 inches", + "weight": "0.93035074564 pounds", + "pages": "292 " +},"265086022": { + "books_id": "265086022", + "title": "Louis D. Brandeis: A Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Urofsky, Melvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Urofsky, Melvin", + "fl": "Melvin Urofsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375423664", + "isbn": { + "0": "0375423664", + "2": "9780375423666" + }, + "asin": "0375423664", + "ean": ["0375423664"], + "publication": "Pantheon (2009), Edition: First Edition, 976 pages", + "date": "2009", + "summary": "Louis D. Brandeis: A Life by Melvin Urofsky (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["347.732634"], + "wording": ["Civil procedure and courts of the United States", + "Federal courts", + "Law", + "North America", + "Procedure and courts", + "Social sciences", + "Supreme Court"] + }, + "lcc": { + "code": "KF8745.B67 U748" + }, + "awards": ["Ambassador Book Award", + "Los Angeles Times Book Prize", + "National Jewish Book Award", + "The Economist Best Books", + "The New York Times Notable Books of the Year", + "Virginia Literary Awards"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "8372579", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "976 p.; 9.56 inches", + "height": "9.56 inches", + "thickness": "1.9 inches", + "length": "6.66 inches", + "dimensions": "9.56 x 6.66 x 1.9 inches", + "weight": "3 pounds", + "pages": "976 " +}, +"265086055": { + "books_id": "265086055", + "title": "A Prayer for Katerina Horovitzova", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Lustig, Arnost", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lustig, Arnost", + "fl": "Arnost Lustig", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879512237", + "isbn": { + "0": "0879512237", + "2": "9780879512231" + }, + "asin": "0879512237", + "ean": ["0879512237"], + "publication": "Overlook Books (1987), Edition: Reprint, 164 pages", + "date": "1987", + "summary": "A Prayer for Katerina Horovitzova by Arnost Lustig (1987)", + "language": ["English", + "Czech"], + "language_codeA": ["eng", + "cze"], + "originallanguage": ["Czech"], + "originallanguage_codeA": ["eng", + "cze"], + "ddc": { + "code": ["891.8"], + "wording": ["East Indo-European and Celtic literatures", + "Literature", + "Other literatures", + "West and South Slavic languages (Bulgarian, Slovene, Polish, Czech, Slovak, Serbo-Croatian, and Macedonian)"] + }, + "lcc": { + "code": "PZ4.L97 PG5038 .L85" + }, + "subject": [["Biographical fiction"], + ["Horovitzov?a, Kate?rina", + "Fiction"], + ["biographical fiction"]], + "series": ["Spisy Arno\u0161ta Lustiga"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "233274", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "164 p.; 1 inches", + "height": "1 inch", + "thickness": "1 inch", + "length": "1 inch", + "dimensions": "1 x 1 x 1 inches", + "weight": "0.1 pounds", + "pages": "164 " +}, +"265086061": { + "books_id": "265086061", + "title": "How to Read the Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brettler, Marc Zvi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brettler, Marc Zvi", + "fl": "Marc Zvi Brettler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760775X", + "isbn": { + "0": "082760775X", + "2": "9780827607750" + }, + "asin": "082760775X", + "ean": ["082760775X"], + "publication": "JEWISH PUBLICATON SOCIETY (2005), Edition: Third Edition, 400 pages", + "date": "2005", + "summary": "How to Read the Bible by Marc Zvi Brettler (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1171 .B74" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "source": "amazon.com books", + "workcode": "106655", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "400 p.; 9.28 inches", + "height": "9.28 inches", + "thickness": "1.28 inches", + "length": "6.3 inches", + "dimensions": "9.28 x 6.3 x 1.28 inches", + "weight": "1.46 pounds", + "pages": "400 " +}, +"265086074": { + "books_id": "265086074", + "title": "Unbroken: A World War II Story of Survival, Resilience, and Redemption", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hillenbrand, Laura", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hillenbrand, Laura", + "fl": "Laura Hillenbrand", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B003WUYPPG", + "publication": "Random House (2010), Edition: Reprint, 530 pages", + "date": "2010", + "summary": "Unbroken: A World War II Story of Survival, Resilience, and Redemption by Laura Hillenbrand (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.547252092"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II", + "Prisoner-of-War Camps", + "Prisoners of war; medical and social services"] + }, + "lcc": { + "code": "D805.J3 Z364" + }, + "awards": ["100 Books to Read in a Lifetime", + "30 Years of 30 Books", + "55 Nonfiction Books to Read in a Lifetime", + "ALA Popular Paperbacks for Young Adults", + "Amazing Audiobooks for Young Adults", + "Andrew Carnegie Medals for Excellence in Fiction and Nonfiction", + "Audie Award", + "Colorado Blue Spruce Award", + "Dayton Literary Peace Prize", + "Grand Canyon Reader Award", + "Indies Choice Book Awards", + "King County Library System Best Books", + "Lincoln Award: Illinois Teen Readers' Choice Award", + "Los Angeles Times Book Prize", + "Marine Commandant's Professional Reading List", + "NCSLMA Battle of the Books", + "NCSS/CBC Notable Social Studies Trade Book for Young People", + "New York Times bestseller", + "Notable Books List", + "Pennsylvania Young Reader's Choice Award", + "Publishers Weekly\u2019s Top 10 Best Books", + "Recommendations of Around the World Magazine", + "Soaring Eagle Book Award", + "Time Magazine's Best Books of the Year", + "Young Hoosier Book Award", + "\u0413\u043b\u0430\u0432\u043d\u044b\u0435 \u043a\u043d\u0438\u0433\u0438 XXI \u0432\u0435\u043a\u0430 \u043f\u043e \u0432\u0435\u0440\u0441\u0438\u0438 Republic"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Sports and Leisure"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "34184"], + "source": "amazon.com books", + "workcode": "10151285", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"265086088": { + "books_id": "265086088", + "title": "Lost Scriptures: Books that Did Not Make It into the New Testament", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ehrman, Bart D.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ehrman, Bart D.", + "fl": "Bart D. Ehrman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195141822", + "isbn": { + "0": "0195141822", + "2": "9780195141825" + }, + "asin": "0195141822", + "ean": ["0195141822"], + "publication": "Oxford University Press (2003), 352 pages", + "date": "2003", + "summary": "Lost Scriptures: Books that Did Not Make It into the New Testament by Bart D. Ehrman (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["229.9205209"], + "wording": ["Apocrypha, pseudepigrapha, intertestamental works", + "Apostolic epistles and canons; Clementines", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS2832 .E37" + }, + "subject": [["Apocryphal books (New Testament)"]], + "source": "amazon.com books", + "workcode": "139286", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "352 p.; 9.4 x 5.9 inches", + "height": "5.9 inches", + "thickness": "1.2 inches", + "length": "9.4 inches", + "dimensions": "5.9 x 9.4 x 1.2 inches", + "weight": "1.47489253278 pounds", + "pages": "352 " +}, +"265086097": { + "books_id": "265086097", + "title": "Talmudic Thinking: Language, Logic, Law", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0872498255", + "isbn": { + "0": "0872498255", + "2": "9780872498259" + }, + "asin": "0872498255", + "ean": ["0872498255"], + "publication": "Univ of South Carolina Pr (1992), 193 pages", + "date": "1992", + "summary": "Talmudic Thinking: Language, Logic, Law by Jacob Neusner (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.2"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504.2 .N52" + }, + "source": "amazon.com books", + "workcode": "1506544", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "193 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "pages": "193 " +}, +"265086111": { + "books_id": "265086111", + "title": "Hollow glory;: The last days of Chaim Weizmann, first President of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shihor, Schmuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shihor, Schmuel", + "fl": "Schmuel Shihor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DS2DM", + "publication": "T. Yoseloff (1960), 256 pages", + "date": "1960", + "summary": "Hollow glory;: The last days of Chaim Weizmann, first President of Israel by Schmuel Shihor (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.940010924"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.W4 S353" + }, + "subject": [["Weizmann, Chaim, 1874-1952"]], + "source": "amazon.com books", + "workcode": "3954360", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.", + "weight": "1 pound", + "pages": "256 " +}, +"265086149": { + "books_id": "265086149", + "title": "The DAF Outline", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Talmud Bavli", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Talmud Bavli", + "fl": "Talmud Bavli", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JVOX6W", + "publication": "Chazoras Hashas (2005), 160 pages", + "date": "2005", + "summary": "The DAF Outline by Talmud Bavli (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31536827", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265086175": { + "books_id": "265086175", + "title": "The War Against the Jews: 1933-1945", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dawidowicz, Lucy S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dawidowicz, Lucy S.", + "fl": "Lucy S. Dawidowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "055334532X", + "isbn": { + "0": "055334532X", + "2": "9780553345322" + }, + "asin": "055334532X", + "ean": ["055334532X"], + "publication": "Random House Publishing Group (1986), Edition: Reissue, 467 pages", + "date": "1986", + "summary": "The War Against the Jews: 1933-1945 by Lucy S. Dawidowicz (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 D33" + }, + "subject": { + "0": ["Antisemitism", + "Germany"], + "2": ["Holocaust, Jewish (1939-1945)"], + "4": ["Holocaust, Jewish (1939-1945)", + "History"] + }, + "awards": ["Anisfield-Wolf Book Award", + "Notable Books List", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "77304", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "467 p.; 9 inches", + "height": "9 inches", + "thickness": "1.16 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.16 inches", + "weight": "1.2406 pounds", + "pages": "467 " +}, +"265086214": { + "books_id": "265086214", + "title": "The Condition of Jewish Belief", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "The editors of Commentary Magazine", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "The editors of Commentary Magazine", + "fl": "The editors of Commentary Magazine", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000LC8MVG", + "publication": "Macmillan (1966)", + "date": "1966", + "summary": "The Condition of Jewish Belief by The editors of Commentary Magazine (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601.C63" + }, + "subject": { + "0": ["Judaism", + "Doctrines"], + "2": ["Judaism", + "United States"] + }, + "source": "amazon.com books", + "workcode": "1715361", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.45 pounds" +}, +"265086217": { + "books_id": "265086217", + "title": "God and Man: In the Old Testament (Ethical and Religious Classics of East and West)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Leon", + "fl": "Leon Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1032147997", + "isbn": { + "0": "1032147997", + "2": "9781032147994" + }, + "asin": "1032147997", + "ean": ["1032147997"], + "publication": "Routledge (2023), Edition: 1, 166 pages", + "date": "2023", + "summary": "God and Man: In the Old Testament (Ethical and Religious Classics of East and West) by Leon Roth (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.5209"], + "wording": ["English and Anglo-Saxon", + "Modern versions and translations", + "Other Minor Translations", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS432.R684" + }, + "source": "amazon.com books", + "workcode": "26909265", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "166 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.37 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.37 inches", + "weight": "0.1763698096 pounds", + "pages": "166 " +}, +"265086247": { + "books_id": "265086247", + "title": "Weizmann : Last of the Patriarchs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Litvinoff, Barnet", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Litvinoff, Barnet", + "fl": "Barnet Litvinoff", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0340200200", + "isbn": { + "0": "0340200200", + "2": "9780340200209" + }, + "asin": "0340200200", + "ean": ["0399117180"], + "publication": "G.P. Putnam's Sons (1976), Edition: First American Edition, 288 pages", + "date": "1976", + "summary": "Weizmann : Last of the Patriarchs by Barnet Litvinoff (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.W45 L58" + }, + "source": "amazon.com books", + "workcode": "6774247", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.", + "weight": "1 pound", + "pages": "288 " +}, +"265086248": { + "books_id": "265086248", + "title": "Seder Talk: The Conversational Haggada", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brown, Erica", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brown, Erica", + "fl": "Erica Brown", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9653017241", + "isbn": { + "0": "9653017241", + "2": "9789653017245" + }, + "asin": "9653017241", + "ean": ["9653017241"], + "publication": "Koren Pub (2015), Edition: Bilingual, 360 pages", + "date": "2015", + "summary": "Seder Talk: The Conversational Haggada by Erica Brown (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "B4028" + }, + "source": "amazon.com books", + "workcode": "16255503", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "360 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "1.39 pounds", + "pages": "360 " +}, +"265086249": { + "books_id": "265086249", + "title": "Jewish Reactions to the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bauer, Yehuda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bauer, Yehuda", + "fl": "Yehuda Bauer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9650504826", + "isbn": { + "0": "9650504826", + "2": "9789650504823" + }, + "asin": "9650504826", + "ean": ["9650504826"], + "publication": "Jewish Lights Pub (1989), Edition: First Edition", + "date": "1989", + "summary": "Jewish Reactions to the Holocaust by Yehuda Bauer (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804 .B37313" + }, + "source": "amazon.com books", + "workcode": "2585799", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "9.25 inches", + "height": "9.25 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 0.5 inches", + "weight": "1 pound" +}, +"265086265": { + "books_id": "265086265", + "title": "Europe and the Jews: The Pressure of Christendom on the People of Israel for 1,900 Years", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hay, Malcolm", + "primaryauthorrole": "Author", + "secondaryauthor": "Kaufmann, Walter|Sugrue, Thomas", + "secondaryauthorroles": "Editor|Introduction", + "authors": [{ + "lf": "Hay, Malcolm", + "fl": "Malcolm Hay", + "role": "Author" + }, + { + "lf": "Kaufmann, Walter", + "fl": "Walter Kaufmann", + "role": "Editor" + }, + { + "lf": "Sugrue, Thomas", + "fl": "Thomas Sugrue", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00NLKPMZE", + "publication": "Academy Chicago Publishers (2023), 406 pages", + "date": "2014", + "summary": "Europe and the Jews: The Pressure of Christendom on the People of Israel for 1,900 Years by Malcolm Hay (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["900"], + "wording": ["History", + "History & geography", + "History, geography, and auxiliary disciplines"] + }, + "lcc": { + "code": "DS145.H39" + }, + "originaltitle": "The Foot of Pride: The pressure of Christendom on the people of Israel for 1900 years", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com all media", + "workcode": "3676674", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"265086275": { + "books_id": "265086275", + "title": "The Origins of the Modern Jew: Jewish Identity and European Culture in Germany, 1749-1824", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Meyer, Michael A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meyer, Michael A.", + "fl": "Michael A. Meyer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814314708", + "isbn": { + "0": "0814314708", + "2": "9780814314708" + }, + "asin": "0814314708", + "ean": ["0814314708"], + "publication": "Wayne State University Press (1972), 252 pages", + "date": "1972", + "summary": "The Origins of the Modern Jew: Jewish Identity and European Culture in Germany, 1749-1824 by Michael A. Meyer (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["910.03"], + "wording": ["Geography & travel", + "History & geography", + "modified standard subdivisions of Geography and travel"] + }, + "lcc": { + "code": "BM316 .M4" + }, + "subject": [["Jews", + "Germany", + "Intellectual life"], + ["Judaism", + "Germany"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1247", + "1599", + "1944", + "3578"], + "source": "amazon.com all media", + "workcode": "314818", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "252 p.; 7.98 inches", + "height": "7.98 inches", + "thickness": "0.55 inches", + "length": "5.33 inches", + "dimensions": "7.98 x 5.33 x 0.55 inches", + "weight": "0.74075320032 pounds", + "pages": "252 " +}, +"265086282": { + "books_id": "265086282", + "title": "Who Crucified Jesus", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zeitlin, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zeitlin, Solomon", + "fl": "Solomon Zeitlin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819700134", + "isbn": { + "0": "0819700134", + "2": "9780819700131" + }, + "asin": "0819700134", + "ean": ["0819700134"], + "publication": "Bloch Pub Co (1976), Edition: FIFTH EDITION, 250 pages", + "date": "1976", + "summary": "Who Crucified Jesus by Solomon Zeitlin (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232.962"], + "wording": ["Christianity", + "Family and life of Jesus", + "Jesus Christ and his family", + "Passion and death of Jesus", + "Religion", + "Trial"] + }, + "lcc": { + "code": "BT431 .Z45" + }, + "source": "amazon.com books", + "workcode": "1644264", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265086321": { + "books_id": "265086321", + "title": "The Zionist Ideology (The Tauber Institute Series for the Study of European Jewry)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shimoni, Gideon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shimoni, Gideon", + "fl": "Gideon Shimoni", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874518334", + "isbn": { + "0": "0874518334", + "2": "9780874518337" + }, + "asin": "0874518334", + "ean": ["0874518334"], + "publication": "Brandeis University Press (1995), 528 pages", + "date": "1995", + "summary": "The Zionist Ideology (The Tauber Institute Series for the Study of European Jewry) by Gideon Shimoni (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.5"], + "wording": ["Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS149.S497354" + }, + "subject": [["Zionism", + "History"], + ["Zionism", + "history"]], + "source": "amazon.com all media", + "workcode": "731851", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "528 p.; 9 inches", + "height": "9 inches", + "thickness": "1.3 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.3 inches", + "weight": "1.7416518698 pounds", + "pages": "528 " +}, +"265086327": { + "books_id": "265086327", + "title": "The Jewish-Christian argument: A history of theologies in conflict", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schoeps, Hans Joachim) Green, David E. transr)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schoeps, Hans Joachim) Green, David E. transr)", + "fl": "Hans Joachim) Green Schoeps, David E. transr)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007J9974", + "publication": "Holt, Rinehard & Winston (1963), 208 pages", + "date": "1963", + "summary": "The Jewish-Christian argument: A history of theologies in conflict by Hans Joachim) Green Schoeps, David E. transr) (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32340313", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "208 p.", + "weight": "1 pound", + "pages": "208 " +}, +"265086345": { + "books_id": "265086345", + "title": "Folktales of Israel (Folktales of the World Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Noy, Dov", + "primaryauthorrole": "Editor", + "secondaryauthor": "Baharav, Gene", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Noy, Dov", + "fl": "Dov Noy", + "role": "Editor" + }, + { + "lf": "Baharav, Gene", + "fl": "Gene Baharav", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226597202", + "isbn": { + "0": "0226597202", + "2": "9780226597201" + }, + "asin": "0226597202", + "ean": ["0226597202"], + "publication": "Univ of Chicago Pr (1969)", + "date": "1969", + "summary": "Folktales of Israel (Folktales of the World Series) by Dov Noy (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.2"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences"] + }, + "lcc": { + "code": "GR98.N6" + }, + "subject": { + "0": ["Jewish folk literature"], + "2": ["Jews", + "Folklore"] + }, + "source": "amazon.com all media", + "workcode": "2090143", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "7.9 inches", + "thickness": "0.6 inches", + "length": "5.2 inches", + "dimensions": "7.9 x 5.2 x 0.6 inches", + "weight": "0.55 pounds" +}, +"265086348": { + "books_id": "265086348", + "title": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03)", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01FGPJERI", + "publication": "Prentice-Hall (1973), Edition: First Edition", + "date": "1973", + "summary": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03) (1973)", + "lcc": [], + "source": "amazon.com all media", + "workcode": "28727711", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265086356": { + "books_id": "265086356", + "title": "Jesus in the Jewish Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldstein, Morris.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldstein, Morris.", + "fl": "Morris. Goldstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000XEH1QE", + "publication": "The Macmillan Company (1950), Edition: First Edition, 319 pages", + "date": "1950", + "summary": "Jesus in the Jewish Tradition by Morris. Goldstein (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232"], + "wording": ["Christianity", + "Jesus Christ and his family", + "Religion"] + }, + "lcc": { + "code": "BM620.G63" + }, + "source": "amazon.com books", + "workcode": "4061305", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "319 p.", + "weight": "0.000625 pounds", + "pages": "319 " +}, +"265086371": { + "books_id": "265086371", + "title": "The Mishnah: An Introduction", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688768", + "isbn": { + "0": "0876688768", + "2": "9780876688762" + }, + "asin": "0876688768", + "ean": ["0876688768"], + "publication": "Jason Aronson, Inc. (1988), 235 pages", + "date": "1988", + "summary": "The Mishnah: An Introduction by Jacob Neusner (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497 .N47838" + }, + "source": "amazon.com all media", + "workcode": "1257499", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "235 p.; 9.28 inches", + "height": "9.28 inches", + "thickness": "0.98 inches", + "length": "6.42 inches", + "dimensions": "9.28 x 6.42 x 0.98 inches", + "weight": "1.2499989793138 pounds", + "pages": "235 " +}, +"265086381": { + "books_id": "265086381", + "title": "Life in a Kibbutz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weingarten, Murray", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weingarten, Murray", + "fl": "Murray Weingarten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "101378328X", + "isbn": { + "0": "101378328X", + "2": "9781013783289" + }, + "asin": "101378328X", + "ean": ["101378328X"], + "publication": "Hassell Street Press (2021), 212 pages", + "date": "2021", + "summary": "Life in a Kibbutz by Murray Weingarten (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS112.K385" + }, + "source": "amazon.com all media", + "workcode": "239638", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "212 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.45 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.45 inches", + "weight": "0.67 pounds", + "pages": "212 " +}, +"265086403": { + "books_id": "265086403", + "title": "The foot of pride;: The pressure of Christendom on the people of Israel for 1900 years", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hay, Malcolm V", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hay, Malcolm V", + "fl": "Malcolm V Hay", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DRJFE", + "publication": "Beacon Press (1950), 352 pages", + "date": "1950", + "summary": "The foot of pride;: The pressure of Christendom on the people of Israel for 1900 years by Malcolm V Hay (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["900"], + "wording": ["History", + "History & geography", + "History, geography, and auxiliary disciplines"] + }, + "lcc": { + "code": "DS145.H39" + }, + "originaltitle": "The Foot of Pride: The pressure of Christendom on the people of Israel for 1900 years", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "3676674", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "352 p.", + "weight": "1.55 pounds", + "pages": "352 " +}, +"265086483": { + "books_id": "265086483", + "title": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim, Volume II", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moore, George Foot", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Moore, George Foot", + "fl": "George Foot Moore", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674288319", + "isbn": { + "0": "0674288319", + "2": "9780674288317" + }, + "asin": "0674288319", + "ean": ["0674288319"], + "publication": "Harvard University Press (1927), Edition: 6th printing 1950. Reprint 2014, 493 pages", + "date": "1927", + "summary": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim, Volume II by George Foot Moore (1927)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.M62" + }, + "source": "amazon.com all media", + "workcode": "14301691", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "493 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "1.06 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 1.06 inches", + "weight": "1.92022630202 pounds", + "pages": "493 " +}, +"265086526": { + "books_id": "265086526", + "title": "The Anguish of the Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Flannery, Edward H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Flannery, Edward H.", + "fl": "Edward H. Flannery", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000WBCBFY", + "publication": "Quest Books (1965)", + "date": "1965", + "summary": "The Anguish of the Jews by Edward H. Flannery (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.452"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS145.F6" + }, + "subject": [["Antisemitism", + "History"]], + "source": "amazon.com books", + "workcode": "109722", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.55 pounds" +}, +"265086545": { + "books_id": "265086545", + "title": "The World History of the Jewish People. Vol. XI (11): The Dark Ages. Jews in Christian Europe 711-1096 [Second Series: Medieval Period. Vol. Two: The Dark Ages]", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J0Q2QC", + "publication": "Rutgers (1966), Edition: First Edition", + "date": "1966", + "summary": "The World History of the Jewish People. Vol. XI (11): The Dark Ages. Jews in Christian Europe 711-1096 [Second Series: Medieval Period. Vol. Two: The Dark Ages] by Cecil Roth (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "31537189", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.3668660244 pounds" +}, +"265086549": { + "books_id": "265086549", + "title": "The Case of the Nazarene Reopened", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldin, Hyman E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldin, Hyman E.", + "fl": "Hyman E. Goldin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1584773065", + "isbn": { + "0": "1584773065", + "2": "9781584773061" + }, + "asin": "1584773065", + "ean": ["1584773065"], + "publication": "Lawbook Exchange, Ltd. (2003), 863 pages", + "date": "2003", + "summary": "The Case of the Nazarene Reopened by Hyman E. Goldin (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232.962"], + "wording": ["Christianity", + "Family and life of Jesus", + "Jesus Christ and his family", + "Passion and death of Jesus", + "Religion", + "Trial"] + }, + "lcc": { + "code": "BT440.G6" + }, + "source": "amazon.com books", + "workcode": "20120822", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "863 p.; 9 inches", + "height": "9 inches", + "thickness": "2.5 inches", + "length": "6.5 inches", + "dimensions": "9 x 6.5 x 2.5 inches", + "weight": "0.992080179 pounds", + "pages": "863 " +}, +"265086551": { + "books_id": "265086551", + "title": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim, Volume I", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moore, George Foot", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Moore, George Foot", + "fl": "George Foot Moore", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674288297", + "isbn": { + "0": "0674288297", + "2": "9780674288294" + }, + "asin": "0674288297", + "ean": ["0674288297"], + "publication": "Harvard University Press (1927), Edition: 6th printing 1950. Reprint 2014, 564 pages", + "date": "1927", + "summary": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim, Volume I by George Foot Moore (1927)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.M62" + }, + "source": "amazon.com all media", + "workcode": "14301710", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "564 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "1.25 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 1.25 inches", + "weight": "2.12084696044 pounds", + "pages": "564 " +}, +"265086628": { + "books_id": "265086628", + "title": "The Testament of the Lost Son", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Morgenstern, Soma", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Morgenstern, Soma", + "fl": "Soma Morgenstern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000IOAMR4", + "publication": "Jewish Publication Society of America (1950), Edition: First Edition, 359 pages", + "date": "1950", + "summary": "The Testament of the Lost Son by Soma Morgenstern (1950)", + "language": ["English", + "French"], + "language_codeA": ["eng", + "fre"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "fre", + "ger"], + "ddc": { + "code": ["833.912"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "PZ3.M82384 T" + }, + "series": ["Vonken in de afgrond", + "Funken im Abgrund"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "16270398", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265086672": { + "books_id": "265086672", + "title": "The shaping of Jewish history;", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rivkin, Ellis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rivkin, Ellis", + "fl": "Ellis Rivkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684123789", + "isbn": { + "0": "0684123789", + "2": "9780684123783" + }, + "asin": "0684123789", + "ean": ["0684123789"], + "publication": "Scribner (1971), Edition: First Edition, 256 pages", + "date": "1971", + "summary": "The shaping of Jewish history; by Ellis Rivkin (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS115.R585" + }, + "subject": [["Jews", + "History", + "Philosophy"], + ["Jews", + "Philosophy"]], + "source": "amazon.com books", + "workcode": "2479134", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.", + "weight": "1.35 pounds", + "pages": "256 " +}, +"265086683": { + "books_id": "265086683", + "title": "Children of the Holocaust: Conversations with sons and daughters of survivors", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Epstein, Helen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Epstein, Helen", + "fl": "Helen Epstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0553139436", + "isbn": { + "0": "0553139436", + "2": "9780553139433" + }, + "asin": "0553139436", + "ean": ["0553139436"], + "publication": "Bantam (1980), 308 pages", + "date": "1980", + "summary": "Children of the Holocaust: Conversations with sons and daughters of survivors by Helen Epstein (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 E62" + }, + "subject": { + "0": ["Children of Holocaust survivors", + "Psychology"], + "2": ["Holocaust, Jewish (1939-1945)", + "Psychological aspects"] + }, + "awards": ["Notable Books List"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com all media", + "workcode": "502228", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "308 p.", + "height": "7 inches", + "thickness": "0.8 inches", + "length": "4.3 inches", + "dimensions": "7 x 4.3 x 0.8 inches", + "weight": "0.15 pounds", + "pages": "308 " +}, +"265086689": { + "books_id": "265086689", + "title": "Bridge to Brotherhood: Judaism's Dialogue With Christianity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosenberg, Stuart E", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosenberg, Stuart E", + "fl": "Stuart E Rosenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1013860969", + "isbn": { + "0": "1013860969", + "2": "9781013860966" + }, + "asin": "1013860969", + "ean": ["1013860969"], + "publication": "Hassell Street Press (2021), 200 pages", + "date": "2021", + "summary": "Bridge to Brotherhood: Judaism's Dialogue With Christianity by Stuart E Rosenberg (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM535 .R63" + }, + "subject": { + "0": ["Christianity and other religions", + "Judaism"], + "2": ["Judaism", + "Christianity"], + "3": ["Judaism", + "Relations", + "Christianity"] + }, + "source": "amazon.com all media", + "workcode": "4217814", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "200 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.42 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.42 inches", + "weight": "0.63 pounds", + "pages": "200 " +}, +"265086693": { + "books_id": "265086693", + "title": "Jesus of Nazareth: His Life, Times, and Teaching", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klausner, Joseph", + "primaryauthorrole": "Author", + "secondaryauthor": "Danby, Herbert", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Klausner, Joseph", + "fl": "Joseph Klausner", + "role": "Author" + }, + { + "lf": "Danby, Herbert", + "fl": "Herbert Danby", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1725283441", + "isbn": { + "0": "1725283441", + "2": "9781725283442" + }, + "asin": "1725283441", + "ean": ["1725283441"], + "publication": "Wipf and Stock (2020), 436 pages", + "date": "2020", + "summary": "Jesus of Nazareth: His Life, Times, and Teaching by Joseph Klausner (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232.9"], + "wording": ["Christianity", + "Family and life of Jesus", + "Jesus Christ and his family", + "Religion"] + }, + "lcc": { + "code": "BT301.K6" + }, + "subject": [["Jesus Christ", + "Biography"]], + "originaltitle": "Yeshu ha-Notsri : zemano, hayav ve-torato.", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com all media", + "workcode": "2404477", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "436 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.99 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.99 inches", + "weight": "1.114 pounds", + "pages": "436 " +}, +"265086701": { + "books_id": "265086701", + "title": "Jews and Arabs (English and French Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Memmi, Albert", + "primaryauthorrole": "Author", + "secondaryauthor": "Levieux, Eleanor", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Memmi, Albert", + "fl": "Albert Memmi", + "role": "Author" + }, + { + "lf": "Levieux, Eleanor", + "fl": "Eleanor Levieux", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879553286", + "isbn": { + "0": "0879553286", + "2": "9780879553289" + }, + "asin": "0879553286", + "ean": ["0879553286"], + "publication": "J Philip O'Hara (1976), 220 pages", + "date": "1976", + "summary": "Jews and Arabs (English and French Edition) by Albert Memmi (1976)", + "language": ["French"], + "language_codeA": ["fre"], + "originallanguage": ["French"], + "originallanguage_codeA": ["fre"], + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119.7 .M4413" + }, + "source": "amazon.com all media", + "workcode": "783957", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265086721": { + "books_id": "265086721", + "title": "Jews and Arabs (A Howard Greenfeld Book) by Albert Memmi (1976) Paperback", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Memmi, Albert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Memmi, Albert", + "fl": "Albert Memmi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01181CXSG", + "publication": "J Philip O'Hara", + "summary": "Jews and Arabs (A Howard Greenfeld Book) by Albert Memmi (1976) Paperback by Albert Memmi", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119.7 .M4413" + }, + "source": "amazon.com all media", + "workcode": "783957", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265086741": { + "books_id": "265086741", + "title": "Root and the Branch: Judaism and the Free Society", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gordis, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226304116", + "isbn": { + "0": "0226304116", + "2": "9780226304113" + }, + "asin": "0226304116", + "ean": ["0226304116"], + "publication": "Univ of Chicago Pr (1962), Edition: First Edition", + "date": "1962", + "summary": "Root and the Branch: Judaism and the Free Society by Robert Gordis (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.38"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Personal and Social Morality", + "Religion"] + }, + "lcc": { + "code": "BM538.S7 G6" + }, + "subject": [["Jewish sociology"], + ["Judaism"], + ["judaism"]], + "source": "amazon.com all media", + "workcode": "2565209", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound", + "pages": "270 " +}, +"265086769": { + "books_id": "265086769", + "title": "The Devil and the Jews: The Medieval Conception of the Jew and Its Relation to Modern Anti-Semitism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Trachtenberg, Joshua", + "primaryauthorrole": "Author", + "secondaryauthor": "Saperstein, Marc", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Trachtenberg, Joshua", + "fl": "Joshua Trachtenberg", + "role": "Author" + }, + { + "lf": "Saperstein, Marc", + "fl": "Marc Saperstein", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602278", + "isbn": { + "0": "0827602278", + "2": "9780827602274" + }, + "asin": "0827602278", + "ean": ["0827602278"], + "publication": "JEWISH PUBLICATON SOCIETY (2002), Edition: 2nd, 278 pages", + "date": "2002", + "summary": "The Devil and the Jews: The Medieval Conception of the Jew and Its Relation to Modern Anti-Semitism by Joshua Trachtenberg (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS145 .T7" + }, + "subject": { + "0": ["Antisemitism", + "Europe", + "History"], + "2": ["Antisemitism", + "Europe", + "History", + "To 1500"], + "3": ["Christianity and antisemitism", + "History"], + "5": ["Europe", + "Ethnic relations"], + "7": ["Jews", + "History"], + "8": ["Jews", + "History", + "70-1789"], + "9": ["Jews", + "Legal status, laws, etc"], + "10": ["Jews", + "Public opinion", + "History"], + "11": ["Jews", + "Public opinion", + "History", + "To 1500"], + "12": ["Jews", + "history"], + "13": ["Public opinion", + "Europe", + "History"], + "15": ["Public opinion", + "Europe", + "History", + "To 1500"] + }, + "awards": ["5 \u043a\u043d\u0438\u0433 \u041f\u043e\u0441\u0442\u043d\u0430\u0443\u043a\u0438"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "433730", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "278 p.; 8.92 inches", + "height": "8.92 inches", + "thickness": "0.71 inches", + "length": "5.18 inches", + "dimensions": "8.92 x 5.18 x 0.71 inches", + "weight": "0.85 pounds", + "pages": "278 " +}, +"265086770": { + "books_id": "265086770", + "title": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03)", + "sortcharacter": "5", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01FGPJERI", + "publication": "Prentice-Hall (1973), Edition: First Edition", + "date": "1973", + "summary": "The international Jewish encyclopedia, by Ben Isaacson (1973-05-03) (1973)", + "lcc": [], + "source": "amazon.com all media", + "workcode": "28727711", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265086790": { + "books_id": "265086790", + "title": "The Children of the Dream.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bettelheim, Bruno", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bettelheim, Bruno", + "fl": "Bruno Bettelheim", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0025105906", + "isbn": { + "0": "0025105906", + "2": "9780025105904" + }, + "asin": "0025105906", + "ean": ["0025105906"], + "publication": "Macmillan (1969), Edition: First Edition", + "date": "1969", + "summary": "The Children of the Dream. by Bruno Bettelheim (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.43"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "HQ792.P3 B47" + }, + "subject": { + "0": ["Children", + "Israel"], + "2": ["Kibbutzim"] + }, + "awards": ["Notable Books List"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "Religion & Spirituality", + "Sociology"], + "genre_id": ["20275895", + "5022", + "1247", + "1944", + "5686"], + "source": "amazon.com all media", + "workcode": "719509", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"265086797": { + "books_id": "265086797", + "title": "THE FIRST CHRISTIAN CENTURY IN JUDAISM AND CHRISTIANITY Certainties and Uncertainties", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sandmel, Samuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sandmel, Samuel", + "fl": "Samuel Sandmel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195011996", + "isbn": { + "0": "0195011996", + "2": "9780195011999" + }, + "asin": "0195011996", + "ean": ["0195011996"], + "publication": "Oxford University Press (1969), Edition: First Edition", + "date": "1969", + "summary": "THE FIRST CHRISTIAN CENTURY IN JUDAISM AND CHRISTIANITY Certainties and Uncertainties by Samuel Sandmel (1969)", + "language": ["English", + "French"], + "language_codeA": ["eng", + "fre"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.S23" + }, + "source": "amazon uk books", + "workcode": "2066861", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.5070632026 pounds" +}, +"265086811": { + "books_id": "265086811", + "title": "Conflict of the Church and the Synagogue", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Parkes, James W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Parkes, James W.", + "fl": "James W. Parkes", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0689701519", + "isbn": { + "0": "0689701519", + "2": "9780689701511" + }, + "asin": "0689701519", + "ean": ["0689701519"], + "publication": "Macmillan Pub Co (1969), 430 pages", + "date": "1969", + "summary": "Conflict of the Church and the Synagogue by James W. Parkes (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["617.41"], + "wording": ["Medicine & health", + "Surgery by systems", + "Surgery, regional medicine, dentistry, ophthalmology, otology, audiology", + "Technology"] + }, + "lcc": { + "code": "DS141 .P317" + }, + "subject": { + "0": ["Antisemitism"], + "2": ["Christianity and antisemitism"], + "3": ["Christianity and antisemitism", + "History"], + "4": ["Christianity and other religions", + "Judaism"], + "6": ["Christianity and other religions", + "Judaism", + "History"], + "7": ["Jewish question"], + "8": ["Judaism", + "Christianity"], + "9": ["Judaism", + "Relations", + "Christianity"], + "10": ["Judaism", + "Relations", + "Christianity", + "History"] + }, + "source": "amazon.com books", + "workcode": "1142137", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "430 p.", + "height": "8.1 inches", + "thickness": "1 inch", + "length": "5.2 inches", + "dimensions": "8.1 x 5.2 x 1 inches", + "weight": "1.1 pounds", + "pages": "430 " +}, +"265086814": { + "books_id": "265086814", + "title": "Nationalism and history;: Essays on old and new Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dubnow, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dubnow, Simon", + "fl": "Simon Dubnow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DMFDU", + "publication": "Jewish Publication Society of America (1958), 385 pages", + "date": "1958", + "summary": "Nationalism and history;: Essays on old and new Judaism by Simon Dubnow (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.04"], + "wording": ["Essays", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS141.D76" + }, + "subject": [["Jews"], + ["Jews", + "History"], + ["Jews", + "history"]], + "source": "amazon.com books", + "workcode": "5560416", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "385 p.", + "weight": "1 pound", + "pages": "385 " +}, +"265086824": { + "books_id": "265086824", + "title": "The Genius Of Paul", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sandmel, Samuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sandmel, Samuel", + "fl": "Samuel Sandmel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1376167492", + "isbn": { + "0": "1376167492", + "2": "9781376167498" + }, + "asin": "1376167492", + "ean": ["1376167492"], + "publication": "Andesite Press (2017), 264 pages", + "date": "2017", + "summary": "The Genius Of Paul by Samuel Sandmel (2017)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["225.9"], + "wording": ["Biblical geography and history", + "New Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS2506 .S15" + }, + "subject": [["Paul, The Apostle, Saint"], + ["Paul, the Apostle, Saint"]], + "source": "amazon.com books", + "workcode": "109732", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "264 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.55 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.55 inches", + "weight": "0.82011961464 pounds", + "pages": "264 " +}, +"265086861": { + "books_id": "265086861", + "title": "The Popes and the Jews in the Middle Ages", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Synan, Edward A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Synan, Edward A.", + "fl": "Edward A. Synan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1597405051", + "isbn": { + "0": "1597405051", + "2": "9781597405058" + }, + "asin": "1597405051", + "ean": ["1597405051"], + "publication": "ACLS Humanities E-Book (2008), 256 pages", + "date": "2008", + "summary": "The Popes and the Jews in the Middle Ages by Edward A. Synan (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["261.2"], + "wording": ["Christian organization, social work & worship", + "Christianity and other systems of (non-)belief", + "Religion", + "Social theology and interreligious relations and attitudes"] + }, + "lcc": { + "code": "BM535.S9" + }, + "subject": { + "0": ["Christianity and other religions", + "Judaism"], + "2": ["Judaism", + "Christianity"], + "3": ["Judaism", + "Relations", + "Christianity"], + "4": ["Papacy", + "History"] + }, + "source": "amazon.com books", + "workcode": "2681633", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 9 inches", + "height": "9 inches", + "thickness": "0.64 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.64 inches", + "weight": "0.79 pounds", + "pages": "256 " +}, +"265086866": { + "books_id": "265086866", + "title": "From Jesus to Paul (Beacon paperback)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klausner, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klausner, Joseph", + "fl": "Joseph Klausner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DLW1Q", + "publication": "Beacon Press (1961), 624 pages", + "date": "1961", + "summary": "From Jesus to Paul (Beacon paperback) by Joseph Klausner (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.133"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM535.K55" + }, + "subject": [["Bible. N.T. Epistles of Paul", + "Theology"], + ["Judaism", + "Relations", + "Christianity"], + ["Paul, The Apostle, Saint"], + ["Paul, the Apostle, Saint"]], + "source": "amazon.com books", + "workcode": "1884183", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "624 p.", + "weight": "1.44 pounds", + "pages": "624 " +}, +"265086884": { + "books_id": "265086884", + "title": "Mame Loshn: The Making of Yiddish", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Geipel, John", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Geipel, John", + "fl": "John Geipel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0904526739", + "isbn": { + "0": "0904526739", + "2": "9780904526738" + }, + "asin": "0904526739", + "ean": ["0904526739"], + "publication": "Journeyman Press (UK) (1982), Edition: First Edition, 112 pages", + "date": "1982", + "summary": "Mame Loshn: The Making of Yiddish by John Geipel (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["439.1"], + "wording": ["German & related languages", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PJ5113 .G4" + }, + "subject": [["Yiddish language", + "History"]], + "source": "amazon.com books", + "workcode": "3846364", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "112 p.", + "weight": "1 pound", + "pages": "112 " +}, +"265086885": { + "books_id": "265086885", + "title": "Maimonides: Torah and Philosophic Quest", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hartman, Rabbi David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hartman, Rabbi David", + "fl": "Rabbi David Hartman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602553", + "isbn": { + "0": "0827602553", + "2": "9780827602557" + }, + "asin": "0827602553", + "ean": ["0827602553"], + "publication": "JEWISH PUBLICATON SOCIETY (1977), 296 pages", + "date": "1977", + "summary": "Maimonides: Torah and Philosophic Quest by Rabbi David Hartman (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B759.M34 H36" + }, + "subject": [["Jewish law", + "Philosophy"], + ["Maimonides, Moses, 1135-1204"], + ["Philosophy, Jewish"], + ["Philosophy, Medieval"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "866523", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "296 p.; 8.23 inches", + "height": "8.23 inches", + "thickness": "0.94 inches", + "length": "5.51 inches", + "dimensions": "8.23 x 5.51 x 0.94 inches", + "weight": "0.83 pounds", + "pages": "296 " +}, +"265086901": { + "books_id": "265086901", + "title": "Jesus in the Jewish Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldstein, Morris.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldstein, Morris.", + "fl": "Morris. Goldstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000XEH1QE", + "publication": "The Macmillan Company (1950), Edition: First Edition, 319 pages", + "date": "1950", + "summary": "Jesus in the Jewish Tradition by Morris. Goldstein (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232"], + "wording": ["Christianity", + "Jesus Christ and his family", + "Religion"] + }, + "lcc": { + "code": "BM620.G63" + }, + "source": "amazon.com books", + "workcode": "4061305", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "319 p.", + "weight": "0.000625 pounds", + "pages": "319 " +}, +"265086903": { + "books_id": "265086903", + "title": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim/3 Volumes Bound in 2 Books", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Moore, George F.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Moore, George F.", + "fl": "George F. Moore", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1565632869", + "isbn": { + "0": "1565632869", + "2": "9781565632868" + }, + "asin": "1565632869", + "ean": ["1565632869"], + "publication": "Hendrickson Pub (1997), Edition: Reprint Edition, 1296 pages", + "date": "1997", + "summary": "Judaism in the First Centuries of the Christian Era: The Age of the Tannaim/3 Volumes Bound in 2 Books by George F. Moore (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.M6" + }, + "source": "amazon.com books", + "workcode": "856693", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "1296 p.; 9 inches", + "height": "9 inches", + "thickness": "3.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 3.75 inches", + "weight": "1.763698096 pounds", + "pages": "1296 " +}, +"265086915": { + "books_id": "265086915", + "title": "Israeli Kids' Letters to Terrorists: Teens Seek Answers for Peace", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "John Shuchart", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "John Shuchart", + "fl": "John Shuchart", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0615210570", + "isbn": { + "0": "0615210570", + "2": "9780615210575" + }, + "asin": "0615210570", + "ean": ["0615210570"], + "publication": "(2008)", + "date": "2008", + "summary": "Israeli Kids' Letters to Terrorists: Teens Seek Answers for Peace by John Shuchart (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["158"], + "wording": ["Applied psychology", + "Philosophy & psychology", + "Psychology"] + }, + "lcc": { + "code": "B2246" + }, + "source": "amazon.com books", + "workcode": "19031554", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.79 pounds" +}, +"265086925": { + "books_id": "265086925", + "title": "Josephus: the historian and his society", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rajak, Tessa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rajak, Tessa", + "fl": "Tessa Rajak", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0800607171", + "isbn": { + "0": "0800607171", + "2": "9780800607173" + }, + "asin": "0800607171", + "ean": ["0800607171"], + "publication": "Fortress Press (1984), Edition: 1st Fortress Press ed, 245 pages", + "date": "1984", + "summary": "Josephus: the historian and his society by Tessa Rajak (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933.05"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.J83 R34" + }, + "subject": [["Jews", + "History", + "Rebellion, 66-73"], + ["Josephus, Flavius"], + ["Josephus, Flavius. De bello Judaico"]], + "source": "amazon.com books", + "workcode": "524987", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "245 p.", + "weight": "1.35 pounds", + "pages": "245 " +}, +"265086941": { + "books_id": "265086941", + "title": "Israel in Revolution, 6-74 C.E: A Political History Based on The Writings of Josephus", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rhoads, David M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rhoads, David M.", + "fl": "David M. Rhoads", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0800604423", + "isbn": { + "0": "0800604423", + "2": "9780800604424" + }, + "asin": "0800604423", + "ean": ["0800604423"], + "publication": "Fortress Press (1976), 199 pages", + "date": "1976", + "summary": "Israel in Revolution, 6-74 C.E: A Political History Based on The Writings of Josephus by David M. Rhoads (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122.R47" + }, + "source": "amazon.com books", + "workcode": "1926233", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.9 inches", + "thickness": "0.6 inches", + "length": "5.9 inches", + "dimensions": "8.9 x 5.9 x 0.6 inches", + "weight": "0.65 pounds", + "pages": "199 " +}, +"265086947": { + "books_id": "265086947", + "title": "Prince of the Ghetto [Isaac Loeb Peretz]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002A72EKK", + "publication": "Jewish Publication Society (1948)", + "date": "1948", + "summary": "Prince of the Ghetto [Isaac Loeb Peretz] by Maurice Samuel (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.493"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5129.P4 Z96" + }, + "subject": [["Peretz, Isaac Leib, 1851 or 2-1915"]], + "source": "amazon.com books", + "workcode": "548847", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "3.9 pounds" +}, +"265086963": { + "books_id": "265086963", + "title": "Empowered Judaism: What Independent Minyanim Can Teach Us about Building Vibrant Jewish Communities", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaunfer, Rabbi Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Sarna, Prof. Jonathan D.", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Kaunfer, Rabbi Elie", + "fl": "Rabbi Elie Kaunfer", + "role": "Author" + }, + { + "lf": "Sarna, Prof. Jonathan D.", + "fl": "Prof. Jonathan D. Sarna", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580234127", + "isbn": { + "0": "1580234127", + "2": "9781580234122" + }, + "asin": "1580234127", + "ean": ["1580234127"], + "publication": "Jewish Lights (2010), Edition: 1, 224 pages", + "date": "2010", + "summary": "Empowered Judaism: What Independent Minyanim Can Teach Us about Building Vibrant Jewish Communities by Rabbi Elie Kaunfer (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM720.F4 K38" + }, + "source": "amazon.com books", + "workcode": "9668291", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "224 p.; 9 inches", + "height": "9 inches", + "thickness": "0.53149606245 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.53149606245 inches", + "weight": "0.70106999316 pounds", + "pages": "224 " +}, +"265086965": { + "books_id": "265086965", + "title": "The Grammar Of The Yiddish Language", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Katz, D; Katz, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, D; Katz, David", + "fl": "D; Katz Katz, David", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0715621629", + "isbn": { + "0": "0715621629", + "2": "9780715621622" + }, + "asin": "0715621629", + "ean": ["0715621629"], + "publication": "Duckworth Publishing (1987), 316 pages", + "date": "1987", + "summary": "The Grammar Of The Yiddish Language by D; Katz Katz, David (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["439.15"], + "wording": ["German & related languages", + "Grammar of Yiddish", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PJ5151 .K38" + }, + "subject": [["Yiddish language", + "Grammar"]], + "source": "amazon.com books", + "workcode": "112620", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "316 p.", + "weight": "1.17506385646 pounds", + "pages": "316 " +}, +"265086993": { + "books_id": "265086993", + "title": "The Yiddish Teacher", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Golding, Hyman E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Golding, Hyman E.", + "fl": "Hyman E. Golding", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000MBBK4C", + "publication": "Hebrew Publishing Co. (1939), Edition: Revised", + "date": "1939", + "summary": "The Yiddish Teacher by Hyman E. Golding (1939)", + "language": ["Yiddish", + "English"], + "language_codeA": ["yid", + "eng"], + "originallanguage_codeA": ["yid", + "eng"], + "ddc": { + "code": ["437.947"], + "wording": ["Eastern Europe; Russia [See 439.1 for Yiddish]", + "Geographic variations", + "Geographic variations in Europe", + "German & related languages", + "Historical and geographic variations, modern nongeographic variations of German", + "Language"] + }, + "lcc": [], + "source": "amazon.com books", + "workcode": "28748568", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265086997": { + "books_id": "265086997", + "title": "College Yiddish : An Introduction to the Yiddish Language and to Jewish Life and Culture", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weinreich, Uriel", + "primaryauthorrole": "Author", + "secondaryauthor": "Roman Jakubson", + "secondaryauthorroles": "Preface", + "authors": [{ + "lf": "Weinreich, Uriel", + "fl": "Uriel Weinreich", + "role": "Author" + }, + { + "lf": "Roman Jakubson", + "fl": "Roman Jakubson", + "role": "Preface" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0914512269", + "isbn": { + "0": "0914512269", + "2": "9780914512264" + }, + "asin": "0914512269", + "ean": ["0914512269"], + "publication": "YIVO Institute for Jewish Research (1999), Edition: 6th, 399 pages", + "date": "1999", + "summary": "College Yiddish : An Introduction to the Yiddish Language and to Jewish Life and Culture by Uriel Weinreich (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["439.1"], + "wording": ["German & related languages", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PJ5115 .W4" + }, + "subject": { + "0": ["Yiddish language"], + "2": ["Yiddish language", + "Grammar"], + "4": ["Yiddish language", + "Textbooks"] + }, + "source": "amazon.com books", + "workcode": "281953", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "399 p.", + "height": "9.1 inches", + "thickness": "1.4 inches", + "length": "6.2 inches", + "dimensions": "9.1 x 6.2 x 1.4 inches", + "weight": "1.34 pounds", + "pages": "399 " +}, +"265087006": { + "books_id": "265087006", + "title": "Maimonides and the Hermeneutics of Concealment: Deciphering Scripture and Midrash in the Guide of the Perplexed (Suny Series in Jewish Philosophy)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Diamond, James Arthur", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Diamond, James Arthur", + "fl": "James Arthur Diamond", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791452484", + "isbn": { + "0": "0791452484", + "2": "9780791452486" + }, + "asin": "0791452484", + "ean": ["0791452484"], + "publication": "State Univ of New York Pr (2002), 235 pages", + "date": "2002", + "summary": "Maimonides and the Hermeneutics of Concealment: Deciphering Scripture and Midrash in the Guide of the Perplexed (Suny Series in Jewish Philosophy) by James Arthur Diamond (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "BM545.D35 D53" + }, + "series": ["SUNY Series in Jewish Philosophy"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1170190", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "235 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "0.74075320032 pounds", + "pages": "235 " +}, +"265087011": { + "books_id": "265087011", + "title": "A Book of Jewish Thoughts: Selected and Arranged", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Hertz, Dr. Joseph Herman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hertz, Dr. Joseph Herman", + "fl": "Dr. Joseph Herman Hertz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0CTTKH3LF", + "ean": ["9798878204002"], + "publication": "Independently published (2024), 319 pages", + "date": "2024", + "summary": "A Book of Jewish Thoughts: Selected and Arranged by Dr. Joseph Herman Hertz (2024)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32340359", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "319 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.72 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.72 inches", + "pages": "319 " +}, +"265087013": { + "books_id": "265087013", + "title": "Essential Papers on Hasidism (Essential Papers on Jewish Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hundert, Gershon David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hundert, Gershon David", + "fl": "Gershon David Hundert", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814734707", + "isbn": { + "0": "0814734707", + "2": "9780814734704" + }, + "asin": "0814734707", + "ean": ["0814734707"], + "publication": "NYU Press (1991), 546 pages", + "date": "1991", + "summary": "Essential Papers on Hasidism (Essential Papers on Jewish Studies) by Gershon David Hundert (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .E85" + }, + "subject": [["Hasidism", + "History"]], + "source": "amazon.com books", + "workcode": "377356", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "546 p.; 9 inches", + "height": "9 inches", + "thickness": "1.4 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.4 inches", + "weight": "1.55 pounds", + "pages": "546 " +}, +"265087027": { + "books_id": "265087027", + "title": "Yiddish Folktales", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Edited By Beatrice Silverman Weinreich", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Edited By Beatrice Silverman Weinreich", + "fl": "Edited By Beatrice Silverman Weinreich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000I3HWL4", + "publication": "PANTHEON BOOKS (1988), Edition: No Edition Stated", + "date": "1988", + "summary": "Yiddish Folktales by Edited By Beatrice Silverman Weinreich (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32340361", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265087028": { + "books_id": "265087028", + "title": "More Words, More Arrows: A Further Collection of Yiddish Folk Sayings (English, Yiddish and Yiddish Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kumove, Shirley", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kumove, Shirley", + "fl": "Shirley Kumove", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814327400", + "isbn": { + "0": "0814327400", + "2": "9780814327401" + }, + "asin": "0814327400", + "ean": ["0814327400"], + "publication": "Wayne State University Press (1998), 224 pages", + "date": "1998", + "summary": "More Words, More Arrows: A Further Collection of Yiddish Folk Sayings (English, Yiddish and Yiddish Edition) by Shirley Kumove (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.9391"], + "wording": ["Customs, etiquette & folklore", + "Folklore", + "Proverbs", + "Social sciences"] + }, + "lcc": { + "code": "PN6519.J5 M67" + }, + "subject": [["Proverbs, Yiddish"], + ["Proverbs, Yiddish", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "2425449", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.24 pounds", + "pages": "224 " +}, +"265087031": { + "books_id": "265087031", + "title": "Yiddish Wisdom: Yiddishe Chochma", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Swarner, Kristina", + "primaryauthorrole": "Author", + "secondaryauthor": "Swarner, Kristina", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Swarner, Kristina", + "fl": "Kristina Swarner", + "role": "Author" + }, + { + "lf": "Swarner, Kristina", + "fl": "Kristina Swarner", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0811812022", + "isbn": { + "0": "0811812022", + "2": "9780811812023" + }, + "asin": "0811812022", + "ean": ["0811812022"], + "publication": "Chronicle Books (1996), Edition: First Edition, 80 pages", + "date": "1996", + "summary": "Yiddish Wisdom: Yiddishe Chochma by Kristina Swarner (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["300"], + "wording": ["Social sciences", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "PN6519.J5 Y48" + }, + "subject": { + "0": ["Proverbs, Yiddish"], + "2": ["Proverbs, Yiddish", + "Translations into English"] + }, + "source": "amazon.com books", + "workcode": "249485", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "80 p.; 7.33 inches", + "height": "7.325 inches", + "thickness": "0.5 inches", + "length": "5.5 inches", + "dimensions": "7.325 x 5.5 x 0.5 inches", + "weight": "0.64154518242 pounds", + "pages": "80 " +}, +"265087051": { + "books_id": "265087051", + "title": "Words Like Arrows: A Collection of Yiddish Folk Sayings (English and Yiddish Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kumove, Shirley", + "primaryauthorrole": "Author", + "secondaryauthor": "Newfeld, Frank", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Kumove, Shirley", + "fl": "Shirley Kumove", + "role": "Author" + }, + { + "lf": "Newfeld, Frank", + "fl": "Frank Newfeld", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805239189", + "isbn": { + "0": "0805239189", + "2": "9780805239188" + }, + "asin": "0805239189", + "ean": ["0805239189"], + "publication": "Schocken Books (1985), Edition: First Edition, 268 pages", + "date": "1985", + "summary": "Words Like Arrows: A Collection of Yiddish Folk Sayings (English and Yiddish Edition) by Shirley Kumove (1985)", + "language": ["Yiddish"], + "language_codeA": ["yid"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["yid"], + "ddc": { + "code": ["398.9"], + "wording": ["Customs, etiquette & folklore", + "Folklore", + "Proverbs", + "Social sciences"] + }, + "lcc": { + "code": "PN6519.J5 W67" + }, + "subject": [["Proverbs, Yiddish"], + ["Proverbs, Yiddish", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "2544999", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "268 p.", + "height": "9.3 inches", + "thickness": "1.4 inches", + "length": "6.4 inches", + "dimensions": "9.3 x 6.4 x 1.4 inches", + "weight": "1.3 pounds", + "pages": "268 " +}, +"265087057": { + "books_id": "265087057", + "title": "Maimonides: Guide for Today's Perplexed", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Seeskin, Kenneth", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Seeskin, Kenneth", + "fl": "Kenneth Seeskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874415098", + "isbn": { + "0": "0874415098", + "2": "9780874415094" + }, + "asin": "0874415098", + "ean": ["0874415098"], + "publication": "Behrman House (1996), 141 pages", + "date": "1996", + "summary": "Maimonides: Guide for Today's Perplexed by Kenneth Seeskin (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "BM545.D35 S42" + }, + "subject": [["Judaism", + "Doctrines"], + ["Maimonides, Moses, 1135-1204. Dal?alat al-?h?a?ir?in"], + ["Philosophy, Jewish"], + ["Philosophy, Medieval"]], + "source": "amazon.com books", + "workcode": "1200856", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "141 p.; 8.27 inches", + "height": "8.27 inches", + "thickness": "0.39 inches", + "length": "5.35 inches", + "dimensions": "8.27 x 5.35 x 0.39 inches", + "weight": "0.4 pounds", + "pages": "141 " +}, +"265087079": { + "books_id": "265087079", + "title": "The Joys of Yiddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosten, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosten, Leo", + "fl": "Leo Rosten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0743406516", + "isbn": { + "0": "0743406516", + "2": "9780743406512" + }, + "asin": "0743406516", + "ean": ["0743406516"], + "publication": "Pocket (2000), 576 pages", + "date": "2000", + "summary": "The Joys of Yiddish by Leo Rosten (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["422.43703"], + "wording": ["Elements from Germanic languages", + "Elements from foreign languages", + "English & Old English languages", + "Etymology of standard English", + "Language", + "[unassigned]"] + }, + "lcc": { + "code": "PN6231.J5" + }, + "subject": { + "0": ["English language", + "Foreign words and phrases", + "Yiddish"], + "1": ["English language", + "Foreign words and phrases", + "Yiddish", + "Dictionaries"], + "2": ["English language", + "Foreign words and phrases", + "Yiddish", + "Humor"], + "3": ["English language", + "Humor"], + "4": ["Jewish wit and humor"], + "6": ["Yiddish language", + "Dictionaries"], + "7": ["Yiddish language", + "Glossaries, vocabularies, etc"], + "8": ["Yiddish language", + "Humor"], + "9": ["Yiddish language", + "Influence on English", + "Humor"] + }, + "originaltitle": "The joys of yiddish", + "awards": ["New York Times bestseller", + "Notable Books List"], + "genre": ["Nonfiction", + "General Nonfiction", + "Reference"], + "genre_id": ["20275895", + "1247", + "4877"], + "source": "amazon.com books", + "workcode": "56535", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "576 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.5 inches", + "length": "5.25 inches", + "dimensions": "8.5 x 5.25 x 1.5 inches", + "weight": "1.1 pounds", + "pages": "576 " +}, +"265087102": { + "books_id": "265087102", + "title": "Yiddish Folktales (The Pantheon Fairy Tale and Folklore Library)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weinreich, Beatrice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weinreich, Beatrice", + "fl": "Beatrice Weinreich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210903", + "isbn": { + "0": "0805210903", + "2": "9780805210903" + }, + "asin": "0805210903", + "ean": ["0805210903"], + "publication": "Schocken (1997), Edition: 1, 448 pages", + "date": "1997", + "summary": "Yiddish Folktales (The Pantheon Fairy Tale and Folklore Library) by Beatrice Weinreich (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.2"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences"] + }, + "lcc": { + "code": "GR98 .Y52" + }, + "subject": { + "0": ["Folk literature, Yiddish", + "Europe, Eastern"], + "2": ["Folk literature, Yiddish", + "Translations into English"], + "4": ["Jews", + "Europe, Eastern", + "Folklore"] + }, + "source": "amazon.com books", + "workcode": "43137", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 9.24 inches", + "height": "9.24 inches", + "thickness": "1.23 inches", + "length": "6.13 inches", + "dimensions": "9.24 x 6.13 x 1.23 inches", + "weight": "1.1243575362 pounds", + "pages": "448 " +}, +"265087109": { + "books_id": "265087109", + "title": "Voices from the Yiddish", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Howe, Irving", + "primaryauthorrole": "Editor", + "secondaryauthor": "Greenberg, Eliezer", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Howe, Irving", + "fl": "Irving Howe", + "role": "Editor" + }, + { + "lf": "Greenberg, Eliezer", + "fl": "Eliezer Greenberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805204954", + "isbn": { + "0": "0805204954", + "2": "9780805204957" + }, + "asin": "0805204954", + "ean": ["0805204954"], + "publication": "Schocken Books (1975), 332 pages", + "date": "1975", + "summary": "Voices from the Yiddish by Irving Howe (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5120.H65" + }, + "subject": { + "0": ["Jews", + "Europe, Eastern"], + "2": ["Yiddish literature", + "History and criticism"] + }, + "source": "amazon.com books", + "workcode": "3127769", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "332 p.", + "height": "7.9 inches", + "thickness": "1 inch", + "length": "5.3 inches", + "dimensions": "7.9 x 5.3 x 1 inches", + "weight": "0.92 pounds", + "pages": "332 " +}, +"265087125": { + "books_id": "265087125", + "title": "Amerikanisher Briefen-Shteler (Yiddish and English Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harkavy, Alexander", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Harkavy, Alexander", + "fl": "Alexander Harkavy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0657071080", + "isbn": { + "0": "0657071080", + "2": "9780657071080" + }, + "asin": "0657071080", + "ean": ["0657071080"], + "publication": "National Yiddish Book Center (1999), Edition: Facsimile Reprint, 315 pages", + "date": "1999", + "summary": "Amerikanisher Briefen-Shteler (Yiddish and English Edition) by Alexander Harkavy (1999)", + "language": ["English", + "Yiddish"], + "language_codeA": ["eng", + "yid"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["808.6"], + "wording": ["Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures", + "Rhetoric of letters"] + }, + "lcc": { + "code": "PJ5116 .H3" + }, + "subject": { + "0": ["Letter writing"], + "2": ["Letter writing, Yiddish"] + }, + "source": "amazon.com books", + "workcode": "388082", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "315 p.", + "height": "8.9 inches", + "thickness": "0.8 inches", + "length": "5.8 inches", + "dimensions": "8.9 x 5.8 x 0.8 inches", + "weight": "1 pound", + "pages": "315 " +}, +"265087140": { + "books_id": "265087140", + "title": "In praise of Yiddish", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0402120841", + "isbn": { + "0": "0402120841", + "2": "9780402120841" + }, + "asin": "0402120841", + "ean": ["0402120841"], + "publication": "Cowles (1971), Edition: First Edition, 283 pages", + "date": "1971", + "summary": "In praise of Yiddish by Maurice Samuel (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["439.1"], + "wording": ["German & related languages", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PJ5113 .S2" + }, + "subject": [["Yiddish language"]], + "source": "amazon.com books", + "workcode": "107221", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "283 p.", + "height": "2.9 inches", + "thickness": "0.6 inches", + "length": "2.4 inches", + "dimensions": "2.9 x 2.4 x 0.6 inches", + "weight": "1.25 pounds", + "pages": "283 " +}, +"265087145": { + "books_id": "265087145", + "title": "Jewish Philosophy in a Secular Age", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Seeskin, Kenneth", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Seeskin, Kenneth", + "fl": "Kenneth Seeskin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791401057", + "isbn": { + "0": "0791401057", + "2": "9780791401057" + }, + "asin": "0791401057", + "ean": ["0791401057"], + "publication": "State Univ of New York Pr (1990), 256 pages", + "date": "1990", + "summary": "Jewish Philosophy in a Secular Age by Kenneth Seeskin (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B154 .S39" + }, + "subject": [["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["Philosophy, Jewish"]], + "source": "amazon.com books", + "workcode": "1200830", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 0.75 inches", + "weight": "0.78043640748 pounds", + "pages": "256 " +}, +"265087158": { + "books_id": "265087158", + "title": "Tales of the Yiddish Rialto: Reminiscences of Playwrights and Players in New York's Jewish Theatre in the Early 1900'S", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lipsky, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lipsky, Louis", + "fl": "Louis Lipsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CLNYE", + "publication": "Thomas Yoseloff (1962), 234 pages", + "date": "1962", + "summary": "Tales of the Yiddish Rialto: Reminiscences of Playwrights and Players in New York's Jewish Theatre in the Early 1900'S by Louis Lipsky (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["792.09747"], + "wording": ["Arts & recreation", + "History, geographic treatment, biography; Description, critical appraisal of specific theatres and companies", + "North America", + "Northeastern U.S.", + "Sports, games & entertainment", + "Stage presentations", + "Standard subdivisions and types of stage presentation"] + }, + "lcc": { + "code": "PN3035 .L49" + }, + "subject": [["Jewish theater", + "New York (State)", + "New York", + "Anecdotes, facetiae, satire, etc"], + ["Theater", + "New York (State)", + "New York", + "Anecdotes, facetiae, satire, etc"], + ["Theater, Yiddish", + "New York (State)", + "New York", + "Anecdotes, facetiae, satire, etc"]], + "source": "amazon.com books", + "workcode": "2705635", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "234 p.", + "weight": "0.94 pounds", + "pages": "234 " +}, +"265087188": { + "books_id": "265087188", + "title": "Maimonides on Judaism and the Jewish People (SUNY Series in Jewish Philosophy) (Jewish Philosophy Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kellner, Menachem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kellner, Menachem", + "fl": "Menachem Kellner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "079140692X", + "isbn": { + "0": "079140692X", + "2": "9780791406922" + }, + "asin": "079140692X", + "ean": ["079140692X"], + "publication": "State University of New York Press (1991), Edition: 2ND, 190 pages", + "date": "1991", + "summary": "Maimonides on Judaism and the Jewish People (SUNY Series in Jewish Philosophy) (Jewish Philosophy Series) by Menachem Kellner (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "B759.M34 K44" + }, + "series": ["SUNY Series in Jewish Philosophy"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "3079016", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "190 p.; 8.56 inches", + "height": "8.56 inches", + "thickness": "0.43 inches", + "length": "5.23 inches", + "dimensions": "8.56 x 5.23 x 0.43 inches", + "weight": "0.50044933474 pounds", + "pages": "190 " +}, +"265087207": { + "books_id": "265087207", + "title": "Herod: A Biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Minkin, Jacob S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Minkin, Jacob S", + "fl": "Jacob S Minkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1428657509", + "isbn": { + "0": "1428657509", + "2": "9781428657502" + }, + "asin": "1428657509", + "ean": ["1428657509"], + "publication": "Kessinger Publishing (2006), 288 pages", + "date": "2006", + "summary": "Herod: A Biography by Jacob S Minkin (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32340379", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 9 inches", + "height": "9 inches", + "thickness": "0.65 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.65 inches", + "weight": "0.94 pounds", + "pages": "288 " +}, +"265087214": { + "books_id": "265087214", + "title": "The Power of Yiddish Thinking : The Way to Mastery Through a Kind of Verbal Karate", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Martin, Marcus", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Martin, Marcus", + "fl": "Marcus Martin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006DYQSS", + "publication": "Doubleday (1971), Edition: 1, 107 pages", + "date": "1971", + "summary": "The Power of Yiddish Thinking : The Way to Mastery Through a Kind of Verbal Karate by Marcus Martin (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["818.5"], + "wording": ["20th Century", + "American literature in English", + "American miscellaneous writings in English", + "Literature"] + }, + "lcc": { + "code": "PN6231.J5 M28" + }, + "subject": [["Jewish wit and humor"]], + "source": "amazon.com books", + "workcode": "4477553", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "107 p.", + "weight": "0.55 pounds", + "pages": "107 " +}, +"265087241": { + "books_id": "265087241", + "title": "Maimonides / by David Yellin and Israel Abrahams", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yellin, David and Abrahams, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Yellin, David and Abrahams, Israel", + "fl": "David and Abrahams Yellin, Israel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0042QTAUY", + "publication": "Philadelphia, Jewish Publication Society Of America, (1903), Edition: First Edition, 239 pages", + "date": "1903", + "summary": "Maimonides / by David Yellin and Israel Abrahams by David and Abrahams Yellin, Israel (1903)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "BM755.M6 Y4" + }, + "subject": [["Maimonides, Moses, 1135-1204"]], + "source": "amazon.com books", + "workcode": "2069757", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087243": { + "books_id": "265087243", + "title": "Hooray for Yiddish: A Book About English", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rosten, Leo Calvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosten, Leo Calvin", + "fl": "Leo Calvin Rosten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671430262", + "isbn": { + "0": "0671430262", + "2": "9780671430269" + }, + "asin": "0671430262", + "ean": ["0671430262"], + "publication": "Simon & Schuster (1988), 363 pages", + "date": "1988", + "summary": "Hooray for Yiddish: A Book About English by Leo Calvin Rosten (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["439.1"], + "wording": ["German & related languages", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PN6231.J5 R66" + }, + "subject": { + "0": ["English language", + "Foreign elements", + "Yiddish"], + "1": ["English language", + "Yiddish"], + "2": ["Jewish wit and humor"], + "4": ["Yiddish language", + "Glossaries, vocabularies, etc"] + }, + "source": "amazon.com books", + "workcode": "107219", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "363 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9 x 6.25 x 0.75 inches", + "weight": "1.05 pounds", + "pages": "363 " +}, +"265087248": { + "books_id": "265087248", + "title": "Piepel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ka-Tzetnik 135633", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ka-Tzetnik 135633", + "fl": "Ka-Tzetnik 135633", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007K2SRG", + "publication": "Anthony Blond (1961), Edition: First Edition, 285 pages", + "date": "1961", + "summary": "Piepel by Ka-Tzetnik 135633 (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.K1613 A" + }, + "subject": [["Auschwitz (Concentration camp)"], + ["Concentration camp inmates", + "Fiction"], + ["Holocaust, Jewish (1939-1945)", + "Fiction"], + ["Jewish fiction"]], + "originaltitle": "Karu lo Piepel", + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "3294487", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087264": { + "books_id": "265087264", + "title": "Maimonides: A Biography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heschel, Abraham Joshua", + "primaryauthorrole": "Author", + "secondaryauthor": "Neugroschel, Joachim", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Heschel, Abraham Joshua", + "fl": "Abraham Joshua Heschel", + "role": "Author" + }, + { + "lf": "Neugroschel, Joachim", + "fl": "Joachim Neugroschel", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374517592", + "isbn": { + "0": "0374517592", + "2": "9780374517595" + }, + "asin": "0374517592", + "ean": ["0374517592"], + "publication": "Farrar, Straus and Giroux (1983), Edition: 2nd Printing, 273 pages", + "date": "1983", + "summary": "Maimonides: A Biography by Abraham Joshua Heschel (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.M6 H413" + }, + "subject": { + "0": ["Jewish philosophers", + "Egypt", + "Biography"], + "2": ["Maimonides, Moses, 1135-1204"], + "3": ["Rabbis", + "Egypt", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "762711", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "273 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.65 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.65 inches", + "weight": "0.815 pounds", + "pages": "273 " +}, +"265087320": { + "books_id": "265087320", + "title": "Josephus, the Bible, and History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feldman, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feldman, Louis", + "fl": "Louis Feldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814319823", + "isbn": { + "0": "0814319823", + "2": "9780814319826" + }, + "asin": "0814319823", + "ean": ["0814319823"], + "publication": "Wayne State/ (1989), Edition: First Edition", + "date": "1989", + "summary": "Josephus, the Bible, and History by Louis Feldman (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933.0072024"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS115.J6 J68" + }, + "source": "amazon.com books", + "workcode": "12182982", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.5 inches", + "weight": "2.05 pounds", + "pages": "474 " +}, +"265087321": { + "books_id": "265087321", + "title": "Tales of Nehama: Impressions of the Life and Teaching of Nehama Leibowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abramowitz, Leah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abramowitz, Leah", + "fl": "Leah Abramowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652292958", + "isbn": { + "0": "9652292958", + "2": "9789652292957" + }, + "asin": "9652292958", + "ean": ["9652292958"], + "publication": "Gefen Publishing House (2003), 304 pages", + "date": "2003", + "summary": "Tales of Nehama: Impressions of the Life and Teaching of Nehama Leibowitz by Leah Abramowitz (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3092"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BS1161.L45 A27" + }, + "source": "amazon.com books", + "workcode": "1185300", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "8.75 x 6 x 0.75 inches", + "weight": "1.1464037624 pounds", + "pages": "304 " +}, +"265087325": { + "books_id": "265087325", + "title": "Jewish Magic and Superstition: A Study in Folk Religion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trachtenberg, Joshua", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Trachtenberg, Joshua", + "fl": "Joshua Trachtenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "161427407X", + "isbn": { + "0": "161427407X", + "2": "9781614274070" + }, + "asin": "161427407X", + "ean": ["161427407X"], + "publication": "Martino Fine Books (2013), 374 pages", + "date": "2013", + "summary": "Jewish Magic and Superstition: A Study in Folk Religion by Joshua Trachtenberg (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "GR98 .T7" + }, + "subject": { + "0": ["Jews", + "Folklore"], + "2": ["Magic, Jewish"], + "3": ["Superstition", + "Religious aspects", + "Judaism"] + }, + "source": "amazon.com books", + "workcode": "10405", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "374 p.; 9 inches", + "height": "9 inches", + "thickness": "0.94 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.94 inches", + "weight": "1.21033781838 pounds", + "pages": "374 " +}, +"265087464": { + "books_id": "265087464", + "title": "The BOOK OF JOB", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Mitchell, Stephen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mitchell, Stephen", + "fl": "Stephen Mitchell", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060969598", + "isbn": { + "0": "0060969598", + "2": "9780060969592" + }, + "asin": "0060969598", + "ean": ["0060969598"], + "publication": "Harper Perennial (1994), Edition: Reprint, 176 pages", + "date": "1994", + "summary": "The BOOK OF JOB by Stephen Mitchell (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.105209"], + "wording": ["Job", + "Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1413 .M58" + }, + "awards": ["1,000 Books to Read Before You Die Page-A-Day Calendar", + "1000 Books to Read Before You Die", + "Classics Revisited"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "11891988", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "176 p.; 8.08 x 0.48 inches", + "height": "0.48 inches", + "thickness": "4.95 inches", + "length": "8.08 inches", + "dimensions": "0.48 x 8.08 x 4.95 inches", + "weight": "0.33 pounds", + "pages": "176 " +}, +"265087534": { + "books_id": "265087534", + "title": "Book of God and Man: Study of Job", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gordis, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226304094", + "isbn": { + "0": "0226304094", + "2": "9780226304090" + }, + "asin": "0226304094", + "ean": ["0226304094"], + "publication": "University of Chicago Press (1966), 401 pages", + "date": "1966", + "summary": "Book of God and Man: Study of Job by Robert Gordis (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.106"], + "wording": ["Job", + "Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1415.G6" + }, + "source": "amazon.com books", + "workcode": "608969", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "401 p.", + "weight": "1.65 pounds", + "pages": "401 " +}, +"265087545": { + "books_id": "265087545", + "title": "Siddur Sim Shalom : A Prayerbook for Shabbat, Festivals, and Weekdays Small Pocket Hardcover", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harlow, Rabbi Jules", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Harlow, Rabbi Jules", + "fl": "Rabbi Jules Harlow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0038YIMNW", + "publication": "US (1989)", + "date": "1989", + "summary": "Siddur Sim Shalom : A Prayerbook for Shabbat, Festivals, and Weekdays Small Pocket Hardcover by Rabbi Jules Harlow (1989)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.D3 Z646813" + }, + "subject": [["Conservative Judaism", + "Liturgy", + "Texts"], + ["Conservative Judaism", + "Texts"], + ["Mahzorim", + "Texts"], + ["Pilgrim Festivals (Judaism)", + "Liturgy", + "Texts"], + ["Sabbath", + "Liturgy", + "Texts"], + ["Siddurim", + "Texts"]], + "source": "amazon.com books", + "workcode": "42948", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087548": { + "books_id": "265087548", + "title": "Summer of My German Soldier (Puffin Modern Classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greene, Bette", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greene, Bette", + "fl": "Bette Greene", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0142406511", + "isbn": { + "0": "0142406511", + "2": "9780142406519" + }, + "asin": "0142406511", + "ean": ["0142406511"], + "publication": "Puffin Books (2006), Edition: Reissue, 240 pages", + "date": "2006", + "summary": "Summer of My German Soldier (Puffin Modern Classics) by Bette Greene (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ7.G8283 S" + }, + "subject": { + "0": ["Arkansas", + "Fiction"], + "2": ["Arkansas", + "History", + "20th century", + "Fiction"], + "3": ["Conduct of life", + "Fiction"], + "5": ["Jews", + "United States", + "Fiction"], + "7": ["Prejudices", + "Fiction"], + "9": ["Prisoners of war", + "Fiction"], + "11": ["Self-esteem", + "Fiction"], + "13": ["World War, 1939-1945", + "Arkansas", + "Juvenile fiction"], + "15": ["World War, 1939-1945", + "United States", + "Fiction"] + }, + "series": ["Summer of My German Soldier"], + "awards": ["ALA 100 Most Frequently Challenged Books of 1990-2000", + "ALA Popular Paperbacks for Young Adults", + "ALA Top 10 Most Challenged Books", + "ALA Top 100 Most Frequently Challenged Books: 1990-1999", + "ALA Top 100 Most Frequently Challenged Books: 2000-2009", + "Best Fiction for Young Adults", + "Books From All 50 States (and Washington, D.C.!)", + "Colorado Children's Book Award", + "Golden Kite Award", + "Great Reads from Great Places", + "Library of Congress Children's Literature Center Children's Books", + "Massachusetts Children's Book Award", + "New York Times Outstanding Books of the Year", + "Shalom Readers Club Book List"], + "genre": ["Fiction", + "Teen", + "Young Adult"], + "genre_id": ["17160326", + "631218", + "1879"], + "source": "amazon.com books", + "workcode": "94143", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 7.06 inches", + "height": "7.06 inches", + "thickness": "0.63 inches", + "length": "5 inches", + "dimensions": "7.06 x 5 x 0.63 inches", + "weight": "0.41226442994 pounds", + "pages": "240 " +}, +"265087559": { + "books_id": "265087559", + "title": "Understanding the Bible Through History and Archaeology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Orlinsky, Harry M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Orlinsky, Harry M.", + "fl": "Harry M. Orlinsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "087068096X", + "isbn": { + "0": "087068096X", + "2": "9780870680960" + }, + "asin": "087068096X", + "ean": ["087068096X"], + "publication": "Ktav Pub & Distributors Inc (1969), 292 pages", + "date": "1969", + "summary": "Understanding the Bible Through History and Archaeology by Harry M. Orlinsky (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.9"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1197.O74" + }, + "subject": [["Bible. O.T.", + "History of Biblical events"]], + "source": "amazon.com books", + "workcode": "1329168", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "292 p.", + "weight": "2.6 pounds", + "pages": "292 " +}, +"265087613": { + "books_id": "265087613", + "title": "Book Of Job: A Commentary", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "primaryauthorrole": "Author", + "secondaryauthor": "Gamoran, Emanuel", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof", + "role": "Author" + }, + { + "lf": "Gamoran, Emanuel", + "fl": "Emanuel Gamoran", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1258218429", + "isbn": { + "0": "1258218429", + "2": "9781258218423" + }, + "asin": "1258218429", + "ean": ["1258218429"], + "publication": "Literary Licensing, LLC (2011), 278 pages", + "date": "2011", + "summary": "Book Of Job: A Commentary by Solomon Bennett Freehof (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.1"], + "wording": ["Job", + "Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1415.F66" + }, + "subject": [["Bible. O.T. Job", + "Commentaries"]], + "series": ["The Jewish Commentary for Bible Readers"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2710015", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "278 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.58 inches", + "length": "5.98 inches", + "dimensions": "9.02 x 5.98 x 0.58 inches", + "weight": "0.83 pounds", + "pages": "278 " +}, +"265087614": { + "books_id": "265087614", + "title": "Around Sarah's Table: Ten Hasidic Women Share Their Stories of Life, Fai", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zakutinsky, Rivka", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zakutinsky, Rivka", + "fl": "Rivka Zakutinsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1451636520", + "isbn": { + "0": "1451636520", + "2": "9781451636529" + }, + "asin": "1451636520", + "ean": ["1451636520"], + "publication": "Free Press (2011), 256 pages", + "date": "2011", + "summary": "Around Sarah's Table: Ten Hasidic Women Share Their Stories of Life, Fai by Rivka Zakutinsky (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM753 .Z35" + }, + "subject": { + "0": ["Bible O.T. Genesis", + "Commentaries"], + "1": ["Brooklyn (New York, N.Y.)", + "Biography"], + "3": ["Hasidim", + "New York", + "Biography"], + "4": ["Hasidim", + "New York (State)", + "New York", + "Biography"], + "5": ["Jewish women", + "New York", + "Biography"], + "6": ["Jewish women", + "New York (State)", + "New York", + "Biography"], + "7": ["Jewish women", + "New York.", + "Religious life"], + "8": ["Jewish women", + "Religious life", + "New York (State)", + "New York"] + }, + "source": "amazon.com books", + "workcode": "377105", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.64 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.64 inches", + "weight": "0.60186197526 pounds", + "pages": "256 " +}, +"265087616": { + "books_id": "265087616", + "title": "The Big Little Book Of Jewish Wit And Wisdom", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "The Big Little Book Of Jewish Wit And Wisdom Wisdom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "The Big Little Book Of Jewish Wit And Wisdom Wisdom", + "fl": "The Big Little Book Of Jewish Wit And Wisdom Wisdom", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00E3GMELA", + "summary": "The Big Little Book Of Jewish Wit And Wisdom by The Big Little Book Of Jewish Wit And Wisdom Wisdom", + "lcc": [], + "source": "amazon.com books", + "workcode": "31700531", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265087649": { + "books_id": "265087649", + "title": "Small Worlds (Small Worlds, 3)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hoffman, Allen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hoffman, Allen", + "fl": "Allen Hoffman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0789205823", + "isbn": { + "0": "0789205823", + "2": "9780789205827" + }, + "asin": "0789205823", + "ean": ["0789205823"], + "publication": "Abbeville Press (1999), 280 pages", + "date": "1999", + "summary": "Small Worlds (Small Worlds, 3) by Allen Hoffman (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3558.O34474 S58" + }, + "series": ["Small Worlds"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "2290590", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "280 p.; 7.7 inches", + "height": "7.7 inches", + "thickness": "0.9 inches", + "length": "4.8 inches", + "dimensions": "7.7 x 4.8 x 0.9 inches", + "weight": "0.64 pounds", + "pages": "280 " +}, +"265087652": { + "books_id": "265087652", + "title": "The Song of Songs and Lamentations: A Study, Modern Translation and Commentary", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gordis, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870682563", + "isbn": { + "0": "0870682563", + "2": "9780870682568" + }, + "asin": "0870682563", + "ean": ["0870682563"], + "publication": "Ktav Pub & Distributors Inc (1974), Edition: Rev. and augm. ed", + "date": "1974", + "summary": "The Song of Songs and Lamentations: A Study, Modern Translation and Commentary by Robert Gordis (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.9"], + "wording": ["Poetic books of Old Testament", + "Religion", + "Song of Solomon, or Canticles", + "The Bible"] + }, + "lcc": { + "code": "BS1485 .G64" + }, + "source": "amazon.com books", + "workcode": "3108331", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "1.10010668738 pounds", + "pages": "203 " +}, +"265087658": { + "books_id": "265087658", + "title": "Five Seasons: A Novel (Harvest in Translation)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Yehoshua, A. B.", + "primaryauthorrole": "Author", + "secondaryauthor": "Halkin, Hillel", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Yehoshua, A. B.", + "fl": "A. B. Yehoshua", + "role": "Author" + }, + { + "lf": "Halkin, Hillel", + "fl": "Hillel Halkin", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00BKROGHK", + "publication": "Mariner Books (2017), Edition: 1, 396 pages", + "date": "2012", + "summary": "Five Seasons: A Novel (Harvest in Translation) by A. B. Yehoshua (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.Y42 M5513" + }, + "subject": [["Widowers", + "Fiction"]], + "awards": ["National Jewish Book Award", + "Notable Books List", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "372014", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"265087672": { + "books_id": "265087672", + "title": "The Auschwitz Album: A Book Based Upon an Album Discovered by a Concentration Camp Survivor, Lili Meier", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hellman, Peter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hellman, Peter", + "fl": "Peter Hellman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394519329", + "isbn": { + "0": "0394519329", + "2": "9780394519326" + }, + "asin": "0394519329", + "ean": ["0394519329"], + "publication": "Random House (1981), Edition: First Edition, 167 pages", + "date": "1981", + "summary": "The Auschwitz Album: A Book Based Upon an Album Discovered by a Concentration Camp Survivor, Lili Meier by Peter Hellman (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D805.P7 A93" + }, + "awards": ["Best Fiction for Young Adults", + "Notable Books List"], + "genre": ["Nonfiction", + "Art & Design", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "9985304", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "1061249", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "167 p.", + "weight": "1 pound", + "pages": "167 " +}, +"265087687": { + "books_id": "265087687", + "title": "How to Be a Jewish Parent: A Practical Handbook for Family Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Diamant, Anita", + "primaryauthorrole": "Author", + "secondaryauthor": "Kushner, Karen", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Diamant, Anita", + "fl": "Anita Diamant", + "role": "Author" + }, + { + "lf": "Kushner, Karen", + "fl": "Karen Kushner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211160", + "isbn": { + "0": "0805211160", + "2": "9780805211160" + }, + "asin": "0805211160", + "ean": ["0805211160"], + "publication": "Schocken (2000), Edition: Uncorrected Bound Galleys, 320 pages", + "date": "2000", + "summary": "How to Be a Jewish Parent: A Practical Handbook for Family Life by Anita Diamant (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "HQ769 .D53" + }, + "source": "amazon.com books", + "workcode": "5085", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "1 pound", + "pages": "320 " +}, +"265087697": { + "books_id": "265087697", + "title": "Gates to the Old City: A Book of Jewish Legends", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Patai, Raphael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Patai, Raphael", + "fl": "Raphael Patai", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876689586", + "isbn": { + "0": "0876689586", + "2": "9780876689585" + }, + "asin": "0876689586", + "ean": ["0876689586"], + "publication": "Jason Aronson Inc (1988), Edition: 2nd ed,1st ptg, 550 pages", + "date": "1988", + "summary": "Gates to the Old City: A Book of Jewish Legends by Raphael Patai (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530 .G37" + }, + "subject": { + "0": ["Aggada", + "Translations into English"], + "2": ["Bible. O.T.", + "Legends"], + "3": ["Hasidim", + "Legends"], + "5": ["Jewish folk literature"], + "6": ["Jews", + "Folklore"], + "8": ["Legends, Jewish"] + }, + "source": "amazon.com books", + "workcode": "674078", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087702": { + "books_id": "265087702", + "title": "The Necessity of Anti-semitism by Frederic Raphael (1997-09-26)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Raphael, Frederic", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raphael, Frederic", + "fl": "Frederic Raphael", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01HCAMXW8", + "publication": "Carcanet Press Ltd", + "summary": "The Necessity of Anti-semitism by Frederic Raphael (1997-09-26) by Frederic Raphael", + "lcc": [], + "source": "amazon.com books", + "workcode": "32340486", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265087713": { + "books_id": "265087713", + "title": "The Big Book of Jewish Humor", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Novak, William", + "primaryauthorrole": "Author", + "secondaryauthor": "Waldoks, Moshe", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Novak, William", + "fl": "William Novak", + "role": "Author" + }, + { + "lf": "Waldoks, Moshe", + "fl": "Moshe Waldoks", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0061138134", + "isbn": { + "0": "0061138134", + "2": "9780061138133" + }, + "asin": "0061138134", + "ean": ["0061138134"], + "publication": "William Morrow Paperbacks (2006), Edition: Reprint, 368 pages", + "date": "2006", + "summary": "The Big Book of Jewish Humor by William Novak (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.88"], + "wording": ["Collections of literary texts from more than two literatures", + "Collections of miscellaneous writings", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6231.J5 B45" + }, + "subject": [["Jewish wit and humor"]], + "source": "amazon.com books", + "workcode": "42978", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 10.88 inches", + "height": "10.88 inches", + "thickness": "0.92 inches", + "length": "8.5 inches", + "dimensions": "10.88 x 8.5 x 0.92 inches", + "weight": "2.314853751 pounds", + "pages": "368 " +},"265087720": { + "books_id": "265087720", + "title": "Yiddish Literature: Its Scope and Major Writers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Madison, Charles Allan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Madison, Charles Allan", + "fl": "Charles Allan Madison", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BUX6O", + "publication": "F. Ungar Pub. Co (1968), 540 pages", + "date": "1968", + "summary": "Yiddish Literature: Its Scope and Major Writers by Charles Allan Madison (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.09301"], + "wording": ["-", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5120.M2" + }, + "subject": [["Yiddish literature", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "2642427", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "540 p.", + "weight": "1.7 pounds", + "pages": "540 " +}, +"265087726": { + "books_id": "265087726", + "title": "The Joys of Yiddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosten, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rosten, Leo", + "fl": "Leo Rosten", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "5551903478", + "isbn": { + "0": "5551903478", + "2": "9785551903475" + }, + "asin": "5551903478", + "ean": ["5551903478"], + "publication": "McGraw-Hill (1968), Edition: 5th ptg, 533 pages", + "date": "1968", + "summary": "The Joys of Yiddish by Leo Rosten (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["422.43703"], + "wording": ["Elements from Germanic languages", + "Elements from foreign languages", + "English & Old English languages", + "Etymology of standard English", + "Language", + "[unassigned]"] + }, + "lcc": { + "code": "PN6231.J5" + }, + "subject": { + "0": ["English language", + "Foreign words and phrases", + "Yiddish"], + "1": ["English language", + "Foreign words and phrases", + "Yiddish", + "Dictionaries"], + "2": ["English language", + "Foreign words and phrases", + "Yiddish", + "Humor"], + "3": ["English language", + "Humor"], + "4": ["Jewish wit and humor"], + "6": ["Yiddish language", + "Dictionaries"], + "7": ["Yiddish language", + "Glossaries, vocabularies, etc"], + "8": ["Yiddish language", + "Humor"], + "9": ["Yiddish language", + "Influence on English", + "Humor"] + }, + "originaltitle": "The joys of yiddish", + "awards": ["New York Times bestseller", + "Notable Books List"], + "genre": ["Nonfiction", + "General Nonfiction", + "Reference"], + "genre_id": ["20275895", + "1247", + "4877"], + "source": "amazon.com books", + "workcode": "56535", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "533 p.", + "height": "9 inches", + "thickness": "2.5 inches", + "length": "6.3 inches", + "dimensions": "9 x 6.3 x 2.5 inches", + "weight": "0.46 pounds", + "pages": "533 " +}, +"265087727": { + "books_id": "265087727", + "title": "Motherland: Beyond the Holocaust: A Mother-Daughter Journey to Reclaim the Past", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chapman, Fern Schumer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chapman, Fern Schumer", + "fl": "Fern Schumer Chapman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140286233", + "isbn": { + "0": "0140286233", + "2": "9780140286236" + }, + "asin": "0140286233", + "ean": ["0140286233"], + "publication": "Penguin Publishing Group (2001), Edition: Reprint, 208 pages", + "date": "2001", + "summary": "Motherland: Beyond the Holocaust: A Mother-Daughter Journey to Reclaim the Past by Fern Schumer Chapman (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.33"], + "wording": ["Bavaria", + "Germany and neighboring central European countries", + "History & geography", + "History of Europe", + "Lower Franconia"] + }, + "lcc": { + "code": "DS135.G5 S373" + }, + "subject": [["Illinois", + "Biography"], + ["Jews", + "Illinois", + "Biography"], + ["Jews", + "Illinois.", + "Travel"], + ["Jews", + "Stockstadt am Main", + "Biography"], + ["Stockstadt am Main (Germany)", + "Biography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com books", + "workcode": "502247", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 7.99 x 0.48 inches", + "height": "0.47637795227 inches", + "thickness": "5.3149606245 inches", + "length": "7.9921259761 inches", + "dimensions": "0.47637795227 x 7.9921259761 x 5.3149606245 inches", + "weight": "0.5070632026 pounds", + "pages": "208 " +}, +"265087753": { + "books_id": "265087753", + "title": "The Book of Intimate Grammar: A Novel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Grossman, David", + "primaryauthorrole": "Author", + "secondaryauthor": "Rosenberg, Betsy", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Grossman, David", + "fl": "David Grossman", + "role": "Author" + }, + { + "lf": "Rosenberg, Betsy", + "fl": "Betsy Rosenberg", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0330335944", + "isbn": { + "0": "0330335944", + "2": "9780330335942" + }, + "asin": "0312420951", + "ean": ["0312420951"], + "publication": "Picador (2002), Edition: First Edition, 352 pages", + "date": "2002", + "summary": "The Book of Intimate Grammar: A Novel by David Grossman (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.436"], + "wording": ["1947\u20132000", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.G728 S413" + }, + "subject": { + "0": ["Bildungsromane"], + "2": ["Children", + "Jerusalem", + "Fiction"], + "4": ["Jerusalem", + "Fiction"] + }, + "originaltitle": "\u05e1\u05e4\u05e8 \u05d4\u05d3\u05e7\u05d3\u05d5\u05e7 \u05d4\u05e4\u05e0\u05d9\u05de\u05d9", + "awards": ["International Dublin Literary Award"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "309802", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.78 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.78 inches", + "weight": "0.70106999316 pounds", + "pages": "352 " +}, +"265087772": { + "books_id": "265087772", + "title": "The Yeshiva, Volume II: Masters and Disciples", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Grade, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Grade, Chaim", + "fl": "Chaim Grade", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0672523442", + "isbn": { + "0": "0672523442", + "2": "9780672523441" + }, + "asin": "0672523442", + "ean": ["0672523442"], + "publication": "Bobbs-Merrill Co (1977), Edition: 1st Edition, 394 pages", + "date": "1977", + "summary": "The Yeshiva, Volume II: Masters and Disciples by Chaim Grade (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PZ4.G73 PJ5129 .G68" + }, + "source": "amazon.com books", + "workcode": "10184797", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "394 p.", + "height": "9.1 inches", + "thickness": "1.6 inches", + "length": "6 inches", + "dimensions": "9.1 x 6 x 1.6 inches", + "weight": "1.65 pounds", + "pages": "394 " +}, +"265087782": { + "books_id": "265087782", + "title": "A Treasury of Yiddish Stories", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Howe, Irving", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Howe, Irving", + "fl": "Irving Howe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NSMOB2", + "publication": "Schooken Books (1974), Edition: First Edition", + "date": "1974", + "summary": "A Treasury of Yiddish Stories by Irving Howe (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.0930108"], + "wording": ["-", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PZ1.H837 T" + }, + "subject": { + "0": ["Jews", + "Fiction"], + "1": ["Jews", + "Social life and customs", + "Fiction"], + "2": ["Short stories, English", + "Translations from Yiddish"], + "3": ["Short stories, Yiddish", + "Translations into English"], + "5": ["Short stories, Yiddish", + "Translations into English. [from old catalog]"] + }, + "source": "amazon.com books", + "workcode": "112436", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265087793": { + "books_id": "265087793", + "title": "Merchant Princes: An Intimate History of Jewish Families Who Built Great Department Stores (Kodansha Globe)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harris, Leon A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Harris, Leon A.", + "fl": "Leon A. Harris", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568360444", + "isbn": { + "0": "1568360444", + "2": "9781568360447" + }, + "asin": "1568360444", + "ean": ["1568360444"], + "publication": "Kodansha USA Inc (1994), Edition: Later Edition, 432 pages", + "date": "1994", + "summary": "Merchant Princes: An Intimate History of Jewish Families Who Built Great Department Stores (Kodansha Globe) by Leon A. Harris (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["381"], + "wording": ["Commerce (Trade)", + "Commerce, communications & transportation", + "Social sciences"] + }, + "lcc": { + "code": "E184.J5 H34" + }, + "subject": { + "0": ["Department stores", + "United States", + "History"], + "2": ["Jewish merchants", + "United States", + "Biography"], + "4": ["Jews", + "United States", + "Biography"], + "6": ["United States", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "298093", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "432 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "8.5 x 6 x 1.25 inches", + "weight": "1.2 pounds", + "pages": "432 " +}, +"265087803": { + "books_id": "265087803", + "title": "The Yeshiva by Chaim Grade (1977-01-05)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Grade, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Grade, Chaim", + "fl": "Chaim Grade", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01N8YEVI5", + "publication": "Macmillan Pub Co", + "summary": "The Yeshiva by Chaim Grade (1977-01-05) by Chaim Grade", + "lcc": [], + "source": "amazon.com books", + "workcode": "31211957", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087827": { + "books_id": "265087827", + "title": "The Jewish Caravan Great Stories of Twenty-five Centuries", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schwarz, Leo W.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Schwarz, Leo W.", + "fl": "Leo W. Schwarz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002F9EMOE", + "publication": "The Jewish Publication Society of America (1946), Edition: Second Edition", + "date": "1946", + "summary": "The Jewish Caravan Great Stories of Twenty-five Centuries by Leo W. Schwarz (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.83"], + "wording": ["Collections of fiction", + "Collections of literary texts from more than two literatures", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6067 .S4" + }, + "subject": { + "0": ["Jewish fiction"], + "2": ["Jewish literature"], + "4": ["Jews", + "Fiction"] + }, + "source": "amazon.com books", + "workcode": "2323159", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265087839": { + "books_id": "265087839", + "title": "The Yeshiva (English and Yiddish Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Grade, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Grade, Chaim", + "fl": "Chaim Grade", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0672522640", + "isbn": { + "0": "0672522640", + "2": "9780672522642" + }, + "asin": "0672522640", + "ean": ["0672522640"], + "publication": "Macmillan Pub Co (1977), Edition: First Edition", + "date": "1977", + "summary": "The Yeshiva (English and Yiddish Edition) by Chaim Grade (1977)", + "language": ["Yiddish"], + "language_codeA": ["yid"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["yid"], + "ddc": { + "code": ["839.093"], + "wording": ["-", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PJ5129.G68 Y" + }, + "source": "amazon.com all media", + "workcode": "13839111", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.6 pounds" +}, +"265087850": { + "books_id": "265087850", + "title": "The Lights of Hanukkah: A Book of Menorahs", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rush, Barbara", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rush, Barbara", + "fl": "Barbara Rush", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1584793139", + "isbn": { + "0": "1584793139", + "2": "9781584793137" + }, + "asin": "1584793139", + "ean": ["1584793139"], + "publication": "Harry N. Abrams (2003), Edition: Stated First Edition, 96 pages", + "date": "2003", + "summary": "The Lights of Hanukkah: A Book of Menorahs by Barbara Rush (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.H3 R87" + }, + "subject": [["Hanukkah"], + ["Hanukkah", + "Pictorial works"]], + "source": "amazon.com books", + "workcode": "1750061", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "96 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.75 inches", + "length": "8.75 inches", + "dimensions": "8.75 x 8.75 x 0.75 inches", + "weight": "1.45 pounds", + "pages": "96 " +}, +"265087853": { + "books_id": "265087853", + "title": "Growing Up Jewish: An Anthology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "David, Jay", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "David, Jay", + "fl": "Jay David", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688128246", + "isbn": { + "0": "0688128246", + "2": "9780688128241" + }, + "asin": "0688128246", + "ean": ["0688128246"], + "publication": "William Morrow & Co (1996), Edition: First Edition, 249 pages", + "date": "1996", + "summary": "Growing Up Jewish: An Anthology by Jay David (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 G763" + }, + "subject": [["Jewish youth", + "United States"], + ["Jewish youth", + "United States", + "Biography"], + ["Jews", + "Biography"], + ["Jews", + "United States", + "Biography"]], + "source": "amazon.com all media", + "workcode": "546427", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "249 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.19 pounds", + "pages": "249 " +}, +"265087876": { + "books_id": "265087876", + "title": "What's Bothering Rashi? - Bereishis (What's Bothering Rashi Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bonchek, Avigdor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bonchek, Avigdor", + "fl": "Avigdor Bonchek", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873068491", + "isbn": { + "0": "0873068491", + "2": "9780873068499" + }, + "asin": "0873068491", + "ean": ["0873068491"], + "publication": "Philipp Feldheim (1997), Edition: First Edition, 5 pages", + "date": "1997", + "summary": "What's Bothering Rashi? - Bereishis (What's Bothering Rashi Series) by Avigdor Bonchek (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.71"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.3 .B66" + }, + "source": "amazon.com all media", + "workcode": "1611459", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "0.6 inches", + "length": "6.7 inches", + "dimensions": "9.3 x 6.7 x 0.6 inches", + "weight": "0.95 pounds" +}, +"265087925": { + "books_id": "265087925", + "title": "Walking the Bible: A Journey by Land Through the Five Books of Moses", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feiler, Bruce", + "primaryauthorrole": "Author", + "secondaryauthor": "Feiler, Bruce|HarperAudio", + "secondaryauthorroles": "Narrator|Publisher", + "authors": [{ + "lf": "Feiler, Bruce", + "fl": "Bruce Feiler", + "role": "Author" + }, + { + "lf": "Feiler, Bruce", + "fl": "Bruce Feiler", + "role": "Narrator" + }, + { + "lf": "HarperAudio", + "fl": "HarperAudio", + "role": "Publisher" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000127NY8", + "publication": "HarperAudio (2003)", + "date": "2003", + "summary": "Walking the Bible: A Journey by Land Through the Five Books of Moses by Bruce Feiler (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.604"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Travel; guidebooks"] + }, + "lcc": { + "code": "DS49 .F45" + }, + "subject": [["Bible. O.T. Pentateuch", + "Geography"], + ["Feiler, Bruce S.", + "Travel", + "Middle East"], + ["Middle East", + "Description and travel"]], + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1240", + "1247", + "1944", + "3578"], + "source": "amazon.com all media", + "workcode": "98957", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.2.1", + "text": "Digital audiobook" + }], + "copies": "1" +}, +"265088032": { + "books_id": "265088032", + "title": "Legends of the Hasidim: An Introduction to Hasidic Culture and Oral Tradition in the New World", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mintz, Jerome R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mintz, Jerome R.", + "fl": "Jerome R. Mintz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226531031", + "isbn": { + "0": "0226531031", + "2": "9780226531038" + }, + "asin": "0226531031", + "ean": ["0226531031"], + "publication": "University of Chicago Press (1968), 472 pages", + "date": "1968", + "summary": "Legends of the Hasidim: An Introduction to Hasidic Culture and Oral Tradition in the New World by Jerome R. Mintz (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.M52" + }, + "subject": { + "0": ["Hasidim", + "Legends"], + "2": ["Hasidism"] + }, + "source": "amazon.com all media", + "workcode": "1714130", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "472 p.", + "weight": "1.65 pounds", + "pages": "472 " +}, +"265088120": { + "books_id": "265088120", + "title": "The Jewish wedding book: A practical guide to the traditions and social customs of the Jewish wedding", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Routtenberg, Lilly S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Routtenberg, Lilly S", + "fl": "Lilly S Routtenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DZVOA", + "publication": "Schocken Books (1968), Edition: Schocken paperback, SB186, 174 pages", + "date": "1968", + "summary": "The Jewish wedding book: A practical guide to the traditions and social customs of the Jewish wedding by Lilly S Routtenberg (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM713.R6" + }, + "subject": [["Marriage customs and rites, Jewish"]], + "source": "amazon.com all media", + "workcode": "378465", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265088126": { + "books_id": "265088126", + "title": "Atheism is Dead", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lelyveld, Arthur J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lelyveld, Arthur J.", + "fl": "Arthur J. Lelyveld", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B004BCSDTS", + "publication": "World Publishing Company (1968), Edition: First Edition", + "date": "1968", + "summary": "Atheism is Dead by Arthur J. Lelyveld (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com all media", + "workcode": "32262793", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"265088180": { + "books_id": "265088180", + "title": "Judaism and Immortality, (Issues of Faith)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Olan, Levi A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Olan, Levi A.", + "fl": "Levi A. Olan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BWJWU", + "publication": "Union of American Hebrew Congregations (1971), Edition: First Edition, 112 pages", + "date": "1971", + "summary": "Judaism and Immortality, (Issues of Faith) by Levi A. Olan (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM645.I5 O4" + }, + "subject": [["Immortality", + "Judaism"]], + "source": "amazon.com all media", + "workcode": "3087925", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265088210": { + "books_id": "265088210", + "title": "Nine Gates to the Chassidic Mysteries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Langer, Jiri", + "primaryauthorrole": "Author", + "secondaryauthor": "Jolly, Stephen", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Langer, Jiri", + "fl": "Jiri Langer", + "role": "Author" + }, + { + "lf": "Jolly, Stephen", + "fl": "Stephen Jolly", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DLZE0", + "publication": "David McKay Co (1961), Edition: First Edition", + "date": "1961", + "summary": "Nine Gates to the Chassidic Mysteries by Jiri Langer (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Czech"], + "originallanguage_codeA": ["eng", + "cze"], + "ddc": { + "code": ["296.833"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM532 .L313" + }, + "subject": [["Hasidic parables"]], + "source": "amazon.com all media", + "workcode": "1034839", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.97 pounds" +}, +"265088220": { + "books_id": "265088220", + "title": "The complete graphic works of Ben Shahn", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Prescott, Kenneth W.", + "primaryauthorrole": "Author", + "secondaryauthor": "Profusely illustrated", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Prescott, Kenneth W.", + "fl": "Kenneth W. Prescott", + "role": "Author" + }, + { + "lf": "Profusely illustrated", + "fl": "Profusely illustrated", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812903676", + "isbn": { + "0": "0812903676", + "2": "9780812903676" + }, + "asin": "0812903676", + "ean": ["0812903676"], + "publication": "Quadrangle / NY Times Books (1973), Edition: First Edition, 250 pages", + "date": "1973", + "summary": "The complete graphic works of Ben Shahn by Kenneth W. Prescott (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["769.92"], + "wording": ["Arts & recreation", + "Biography", + "History, geographic treatment, biography", + "Printmaking & prints", + "Prints"] + }, + "lcc": { + "code": "NE539.S4 P73" + }, + "source": "amazon.com books", + "workcode": "6277770", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "250 p.", + "weight": "1 pound", + "pages": "250 " +}, +"265088221": { + "books_id": "265088221", + "title": "The Hasidim: Mystical Adventures and Ecstatics (For the Millions Series, FM-49)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lowenkopf, Anne N.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lowenkopf, Anne N.", + "fl": "Anne N. Lowenkopf", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082020157X", + "isbn": { + "0": "082020157X", + "2": "9780820201573" + }, + "asin": "082020157X", + "ean": ["082020157X"], + "publication": "Sherbourne Press, Inc. (1973), 163 pages", + "date": "1973", + "summary": "The Hasidim: Mystical Adventures and Ecstatics (For the Millions Series, FM-49) by Anne N. Lowenkopf (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.L68" + }, + "series": ["For the Millions"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com all media", + "workcode": "2297299", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "163 p.", + "weight": "1 pound", + "pages": "163 " +}, +"265088260": { + "books_id": "265088260", + "title": "The Jewish Way in Love & Marriage", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lamm, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lamm, Maurice", + "fl": "Maurice Lamm", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824604806", + "isbn": { + "0": "0824604806", + "2": "9780824604806" + }, + "asin": "0824604806", + "ean": ["0824604806"], + "publication": "Jonathan David Co., Inc (2008), 308 pages", + "date": "2008", + "summary": "The Jewish Way in Love & Marriage by Maurice Lamm (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.42"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "HQ525.J4 L29" + }, + "subject": { + "0": ["Marriage", + "Judaism"], + "1": ["Marriage", + "Religious aspects", + "Judaism"], + "2": ["Marriage (Jewish law)"], + "4": ["Marriage customs and rites, Jewish"] + }, + "source": "amazon.com all media", + "workcode": "179251", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "308 p.; 9 inches", + "height": "9 inches", + "thickness": "0.69 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.69 inches", + "weight": "2.314853751 pounds", + "pages": "308 " +}, +"265088264": { + "books_id": "265088264", + "title": "Encountering Torah Reflections on the Weekly Portion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabbi Vernon Kurtz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Vernon Kurtz", + "fl": "Rabbi Vernon Kurtz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0988678608", + "isbn": { + "0": "0988678608", + "2": "9780988678606" + }, + "asin": "0988678608", + "ean": ["0988678608"], + "publication": "G & H Soho (2013), 304 pages", + "date": "2013", + "summary": "Encountering Torah Reflections on the Weekly Portion by Rabbi Vernon Kurtz (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BS1225 .K86" + }, + "source": "amazon.com all media", + "workcode": "23025708", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265088289": { + "books_id": "265088289", + "title": "The Camera of My Family", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hanf Noren, Catherine", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hanf Noren, Catherine", + "fl": "Catherine Hanf Noren", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394488385", + "isbn": { + "0": "0394488385", + "2": "9780394488387" + }, + "asin": "0394488385", + "ean": ["0394488385"], + "publication": "Knopf : distributed by Random House (1976), Edition: First Edition, 240 pages", + "date": "1976", + "summary": "The Camera of My Family by Catherine Hanf Noren (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["929.2"], + "wording": ["Biography & genealogy", + "Families", + "Genealogy, names, insignia", + "History & geography"] + }, + "lcc": { + "code": "TR680 .N68" + }, + "subject": [["Portrait photography"], + ["Wallach family", + "Portraits"]], + "source": "amazon.com books", + "workcode": "2264781", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "1 pound", + "pages": "240 " +}, +"265088290": { + "books_id": "265088290", + "title": "The Camera of My Family", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hanf Noren, Catherine", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hanf Noren, Catherine", + "fl": "Catherine Hanf Noren", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394488385", + "isbn": { + "0": "0394488385", + "2": "9780394488387" + }, + "asin": "0394488385", + "ean": ["0394488385"], + "publication": "Knopf : distributed by Random House (1976), Edition: First Edition, 240 pages", + "date": "1976", + "summary": "The Camera of My Family by Catherine Hanf Noren (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["929.2"], + "wording": ["Biography & genealogy", + "Families", + "Genealogy, names, insignia", + "History & geography"] + }, + "lcc": { + "code": "TR680 .N68" + }, + "subject": [["Portrait photography"], + ["Wallach family", + "Portraits"]], + "source": "amazon.com books", + "workcode": "2264781", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "1 pound", + "pages": "240 " +}, +"265088291": { + "books_id": "265088291", + "title": "The Camera of My Family", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hanf Noren, Catherine", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hanf Noren, Catherine", + "fl": "Catherine Hanf Noren", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394488385", + "isbn": { + "0": "0394488385", + "2": "9780394488387" + }, + "asin": "0394488385", + "ean": ["0394488385"], + "publication": "Knopf : distributed by Random House (1976), Edition: First Edition, 240 pages", + "date": "1976", + "summary": "The Camera of My Family by Catherine Hanf Noren (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["929.2"], + "wording": ["Biography & genealogy", + "Families", + "Genealogy, names, insignia", + "History & geography"] + }, + "lcc": { + "code": "TR680 .N68" + }, + "subject": [["Portrait photography"], + ["Wallach family", + "Portraits"]], + "source": "amazon.com books", + "workcode": "2264781", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "1 pound", + "pages": "240 " +}, +"265088305": { + "books_id": "265088305", + "title": "The Messianic Idea In Israel From Its Beginning to the Completion of the Mishnah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Klausner, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klausner, Joseph", + "fl": "Joseph Klausner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002E1M2EK", + "publication": "The Macmillan Company (1955), Edition: First Edition", + "date": "1955", + "summary": "The Messianic Idea In Israel From Its Beginning to the Completion of the Mishnah by Joseph Klausner (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.124"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion", + "Talmud"] + }, + "lcc": { + "code": "BM615.K563" + }, + "source": "amazon.com all media", + "workcode": "2869787", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.55 pounds" +}, +"265088376": { + "books_id": "265088376", + "title": "The voice still speaks;: Message of the Torah for contemporary man", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Adler, Morris", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Adler, Morris", + "fl": "Morris Adler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BWUD8", + "publication": "Bloch Pub. Co (1969), 436 pages", + "date": "1969", + "summary": "The voice still speaks;: Message of the Torah for contemporary man by Morris Adler (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM740.A3" + }, + "source": "amazon.com all media", + "workcode": "6989500", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "436 p.", + "weight": "3.6 pounds", + "pages": "436 " +}, +"265088389": { + "books_id": "265088389", + "title": "The Brigade", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bartov, Hanoch", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bartov, Hanoch", + "fl": "Hanoch Bartov", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000OKQDHA", + "publication": "HOLT, RINEHART AND WINSTON (1968), Edition: First Edition, 246 pages", + "date": "1968", + "summary": "The Brigade by Hanoch Bartov (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ4.B294 B" + }, + "source": "amazon.com all media", + "workcode": "5141351", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "246 p.", + "weight": "0.000625 pounds", + "pages": "246 " +}, +"265088426": { + "books_id": "265088426", + "title": "Rivers in the Desert: A History of the Negev: Being an Illustrated Account of Discoveries in a Frontierland of Civilization", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glueck, Nelson", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glueck, Nelson", + "fl": "Nelson Glueck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006D71YY", + "publication": "Farrar, Straus and Cudahy (1959), Edition: First Edition, 302 pages", + "date": "1959", + "summary": "Rivers in the Desert: A History of the Negev: Being an Illustrated Account of Discoveries in a Frontierland of Civilization by Nelson Glueck (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.3945"], + "wording": ["Antiquities of ancient countries", + "Geography & travel", + "Geography of and travel in ancient world", + "History & geography", + "Middle East to 640", + "Other parts of ancient world"] + }, + "lcc": { + "code": "DS110.N4 G5" + }, + "subject": [["Israel", + "Antiquities"], + ["Negev (Israel)", + "Antiquities"]], + "awards": ["Ohioana Book Award"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1429187", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "302 p.", + "weight": "1.01 pounds", + "pages": "302 " +}, +"265088429": { + "books_id": "265088429", + "title": "The American Jew, a reappraisal, edited by Oscar I. Janowsky", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Janowsky, Oscar Isaiah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Janowsky, Oscar Isaiah", + "fl": "Oscar Isaiah Janowsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B09P46NYT2", + "publication": "Jewish Publication Society of America (1964), Edition: Third printing", + "date": "1964", + "summary": "The American Jew, a reappraisal, edited by Oscar I. Janowsky by Oscar Isaiah Janowsky (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.452"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "E184.J5 J32" + }, + "subject": [["Jews", + "United States"]], + "source": "amazon.com all media", + "workcode": "1568345", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"265088433": { + "books_id": "265088433", + "title": "The River Jordan", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Glueck, Nelson", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glueck, Nelson", + "fl": "Nelson Glueck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1135716102", + "isbn": { + "0": "1135716102", + "2": "9781135716103" + }, + "asin": "B0006BOEU0", + "ean": ["1135716102"], + "publication": "Lutterworth (1946), Edition: First Edition", + "date": "1946", + "summary": "The River Jordan by Nelson Glueck (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.91"], + "wording": ["Geography", + "Geography, history, chronology, persons of Bible lands in Bible times", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "DS110.J6 G55" + }, + "subject": { + "0": ["Bible", + "Geography"], + "1": ["Jordan River"], + "3": ["Palestine", + "Description and travel"] + }, + "awards": ["Ohioana Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1247", + "1599", + "1944", + "3578"], + "source": "amazon.com all media", + "workcode": "3007642", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"265088450": { + "books_id": "265088450", + "title": "Pathways Through The Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Mortimer J.", + "primaryauthorrole": "Author", + "secondaryauthor": "Szyk, Arthur", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Cohen, Mortimer J.", + "fl": "Mortimer J. Cohen", + "role": "Author" + }, + { + "lf": "Szyk, Arthur", + "fl": "Arthur Szyk", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00005WKXN", + "publication": "The Jewish Publication Society of America (1946), Edition: First Edition, 548 pages", + "date": "1946", + "summary": "Pathways Through The Bible by Mortimer J. Cohen (1946)", + "language": ["English", + "Chinese"], + "language_codeA": ["eng", + "chi"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "chi"], + "ddc": { + "code": ["221.5"], + "wording": ["Modern versions and translations", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1091.C57" + }, + "subject": [["Bible. O.T. English. Selections. 1960"]], + "source": "amazon.com all media", + "workcode": "1171375", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "548 p.", + "weight": "1 pound", + "pages": "548 " +}, +"265088471": { + "books_id": "265088471", + "title": "Troubled Eden: An Anatomy of British Jewry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bermant, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bermant, Chaim", + "fl": "Chaim Bermant", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465087515", + "isbn": { + "0": "0465087515", + "2": "9780465087518" + }, + "asin": "0465087515", + "ean": ["0465087515"], + "publication": "Basic Books (1970), 274 pages", + "date": "1970", + "summary": "Troubled Eden: An Anatomy of British Jewry by Chaim Bermant (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.451"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.E5 B43" + }, + "source": "amazon.com all media", + "workcode": "2068756", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "274 p.", + "weight": "1.1 pounds", + "pages": "274 " +}, +"265088476": { + "books_id": "265088476", + "title": "A World Passed by: Great Cities in Jewish Diaspora History", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Lowenthal, Marvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lowenthal, Marvin", + "fl": "Marvin Lowenthal", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0934710198", + "isbn": { + "0": "0934710198", + "2": "9780934710190" + }, + "asin": "0934710198", + "ean": ["0934710198"], + "publication": "Pangloss Pr (1990), Edition: Reprint, 498 pages", + "date": "1990", + "summary": "A World Passed by: Great Cities in Jewish Diaspora History by Marvin Lowenthal (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.04924"], + "wording": ["Ethnic and national groups", + "History & geography", + "History of Europe", + "History of Europe", + "Standard subdivisions"] + }, + "lcc": { + "code": "DS135.A1 L6" + }, + "source": "amazon.com books", + "workcode": "4655130", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "498 p.; 10 inches", + "height": "10 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "10 x 6.5 x 1.25 inches", + "weight": "2.1 pounds", + "pages": "498 " +}, +"265088500": { + "books_id": "265088500", + "title": "A Faith for Moderns (AUTHOR INSCRIBED FIRST EDITION)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Gordis, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000KU5348", + "publication": "New York, Bloch Pub. Co. , (1960), Edition: First Edition, 316 pages", + "date": "1960", + "summary": "A Faith for Moderns (AUTHOR INSCRIBED FIRST EDITION) by Robert Gordis (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200"], + "wording": ["Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "BL48.G64" + }, + "subject": { + "0": ["Religion"], + "2": ["religion"] + }, + "source": "amazon.com all media", + "workcode": "2404484", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "316 p.", + "weight": "1 pound", + "pages": "316 " +}, +"265088578": { + "books_id": "265088578", + "title": "Encountering Torah : reflections on the weekly portion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kurtz, Vernon H.", + "authors": [{ + "lf": "Kurtz, Vernon H.", + "fl": "Vernon H. Kurtz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780988678606", + "isbn": ["9780988678606", + "0988678608"], + "publication": "Highland Park, Illinois : North Suburban Synagogue Beth El, [2013]", + "date": "2013", + "summary": "Encountering Torah : reflections on the weekly portion by Vernon H. Kurtz (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BS1225.54.K86 2013" + }, + "source": "Library of Congress (Washington, DC)", + "lccn": "2013416222", + "workcode": "23025708", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 304 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xii; 304 " +}, +"265088649": { + "books_id": "265088649", + "title": "The Champagne Spy", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lotz, Wolfgang", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lotz, Wolfgang", + "fl": "Wolfgang Lotz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006XNRXS", + "publication": "Manor Books (1973), Edition: 2ND, 240 pages", + "date": "1973", + "summary": "The Champagne Spy by Wolfgang Lotz (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["327.12"], + "wording": ["Espionage and subversion", + "Foreign policy and specific topics in international relations", + "International Relations", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DS119.E3 L68" + }, + "source": "amazon.com all media", + "workcode": "7668571", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.", + "weight": "0.35 pounds", + "pages": "240 " +}, +"265088651": { + "books_id": "265088651", + "title": "Rabbinic political theory : religion and politics in the Mishnah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226576507", + "isbn": { + "0": "0226576507", + "2": "9780226576503" + }, + "publication": "Chicago : University of Chicago Press, 1991.", + "date": "1991", + "summary": "Rabbinic political theory : religion and politics in the Mishnah by Jacob Neusner (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3/877/09015", + "296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496.9.P64N48 1991" + }, + "subject": [["Politics in Rabbinical Literature"], + ["Politics in rabbinical literature"]], + "series": ["Chicago Studies in the History of Judaism"], + "genre": ["Nonfiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "53740", + "1944"], + "source": "NEOS Consortium (Edmonton, AB)", + "lccn": "90045030", + "workcode": "4745030", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxii, 262 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xxii; 262 " +}, +"265088696": { + "books_id": "265088696", + "title": "Encountering Torah : reflections on the weekly portion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kurtz, Vernon H.", + "authors": [{ + "lf": "Kurtz, Vernon H.", + "fl": "Vernon H. Kurtz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780988678606", + "isbn": ["9780988678606", + "0988678608"], + "publication": "Highland Park, Illinois : North Suburban Synagogue Beth El, [2013]", + "date": "2013", + "summary": "Encountering Torah : reflections on the weekly portion by Vernon H. Kurtz (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BS1225.54.K86 2013" + }, + "source": "Library of Congress (Washington, DC)", + "lccn": "2013416222", + "workcode": "23025708", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 304 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xii; 304 " +}, +"265088698": { + "books_id": "265088698", + "title": "Studying classical Judaism : a primer", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0664251366", + "isbn": { + "0": "0664251366", + "2": "9780664251369" + }, + "publication": "Louisville, Ky. : Westminster/John Knox Press, c1991.", + "date": "1991", + "summary": "Studying classical Judaism : a primer by Jacob Neusner (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296/.09/015", + "296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177.N4795 1991" + }, + "subject": [["Judaism History Historiography"], + ["Rabbinical Literature History and criticism"], + ["Rabbinical literature History and Criticism"], + ["Rabbinical literature History and criticism"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "90013032", + "workcode": "815693", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "208 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "208 " +}, +"265088719": { + "books_id": "265088719", + "title": "The life ; Against Apion", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Josephus Flavius.,", + "secondaryauthor": "Thackeray, Henry St. John", + "authors": [{ + "lf": "Josephus Flavius.,", + "fl": "Josephus Flavius.," + }, + { + "lf": "Thackeray, Henry St. John", + "fl": "Henry St. John Thackeray" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cambridge (Mass.): Harvard university press, 1966", + "date": "1966", + "summary": "The life ; Against Apion by Josephus Flavius., (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Greek (Ancient)"], + "originallanguage_codeA": ["eng", + "grc"], + "ddc": { + "code": ["930"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "History of ancient world to ca. 499"] + }, + "lcc": { + "code": "PA3612" + }, + "source": "LIBIS-Net (Belgium)", + "workcode": "1105293", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "XXI; 425 " +}, +"265088720": { + "books_id": "265088720", + "title": "The life ; Against Apion", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Josephus Flavius.,", + "secondaryauthor": "Thackeray, Henry St. John", + "authors": [{ + "lf": "Josephus Flavius.,", + "fl": "Josephus Flavius.," + }, + { + "lf": "Thackeray, Henry St. John", + "fl": "Henry St. John Thackeray" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cambridge (Mass.): Harvard university press, 1966", + "date": "1966", + "summary": "The life ; Against Apion by Josephus Flavius., (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Greek (Ancient)"], + "originallanguage_codeA": ["eng", + "grc"], + "ddc": { + "code": ["930"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "History of ancient world to ca. 499"] + }, + "lcc": { + "code": "PA3612" + }, + "source": "LIBIS-Net (Belgium)", + "workcode": "1105293", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "XXI; 425 " +}, +"265088830": { + "books_id": "265088830", + "title": "Invitation to the Talmud : a teaching book", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060660996", + "isbn": { + "0": "0060660996", + "2": "9780060660994" + }, + "publication": "San Francisco : Harper & Row, ©1984.", + "date": "1984", + "summary": "Invitation to the Talmud : a teaching book by Jacob Neusner (1984)", + "language": ["English", + "Aramaic"], + "language_codeA": ["eng", + "arc"], + "originallanguage_codeA": ["eng", + "arc"], + "ddc": { + "code": ["296.1/2061", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503.5.N48 1984" + }, + "subject": [["Einfu\u0308hrung"], + ["Religiao (Livros Sagrados)"], + ["Religiao (livros sagrados)"]], + "source": "Oregon State University (Corvallis, OR)", + "lccn": "83048422", + "workcode": "179101", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxxi, 359 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xxxi; 359 " +}, +"265088884": { + "books_id": "265088884", + "title": "The great Torah commentators", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Finkel, Avraham Yaakov", + "authors": [{ + "lf": "Finkel, Avraham Yaakov", + "fl": "Avraham Yaakov Finkel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688415", + "isbn": { + "0": "0876688415", + "2": "9780876688410" + }, + "publication": "Northvale, N.J. : J. Aronson, [1990]", + "date": "1990", + "summary": "The great Torah commentators by Avraham Yaakov Finkel (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296/.092/2", + "296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM750.F53 1990" + }, + "subject": [["Cabala History"], + ["Hasidim Biography"], + ["Jewish law History"], + ["Jewish philosophers Biography"], + ["Jewish scholars Biography"], + ["Musar movement History"], + ["Rabbis Biography"], + ["cabala history"]], + "source": "OhioLINK (Columbus, OH)", + "lccn": "89015168", + "workcode": "5506152", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 256 p.; 29 cm", + "height": "29 cm", + "dimensions": "29 cm", + "pages": "xi; 256 " +}, +"265088987": { + "books_id": "265088987", + "title": "The guide of the perplexed: An abridged edition (Philosophia Judaica series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Maimònides", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Maimònides", + "fl": "Maimònides", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CIC0R", + "publication": "East and West Library (1952), 233 pages", + "date": "1952", + "summary": "The guide of the perplexed: An abridged edition (Philosophia Judaica series) by Maimònides (1952)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32340596", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265088989": { + "books_id": "265088989", + "title": "A Guide to Passover / by Isaac Levy", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Isaac (1910-) Levy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Isaac (1910-) Levy", + "fl": "Isaac (1910-) Levy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B007XCNFB4", + "publication": "London : Jewish Chronicle Publications (1958), Edition: First Edition", + "date": "1958", + "summary": "A Guide to Passover / by Isaac Levy by Isaac (1910-) Levy (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.437"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Passover", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.P3 L4" + }, + "source": "amazon.com books", + "workcode": "5662623", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265089017": { + "books_id": "265089017", + "title": "Philo Selections", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Philosphia Judaica", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Philosphia Judaica", + "fl": "Philosphia Judaica", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B007ZUN9JM", + "publication": "East and West Library (1941)", + "date": "1941", + "summary": "Philo Selections by Philosphia Judaica (1941)", + "lcc": [], + "source": "amazon.com books", + "workcode": "23390882", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265089040": { + "books_id": "265089040", + "title": "Jehuda Halevi: Kuzari. Abridged edition with an introduction and a commentary by Isaak Heinemann", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Judah, ben Samuel, hal-Levi. Isaak Heinemann (ed.)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Judah, ben Samuel, hal-Levi. Isaak Heinemann (ed.)", + "fl": "ben Samuel Judah, hal-Levi. Isaak Heinemann (ed.)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002QQD17A", + "publication": "Oxford: East and West Library (1947), Edition: First Edition", + "date": "1947", + "summary": "Jehuda Halevi: Kuzari. Abridged edition with an introduction and a commentary by Isaak Heinemann by ben Samuel Judah, hal-Levi. Isaak Heinemann (ed.) (1947)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon uk books", + "workcode": "32340603", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265089109": { + "books_id": "265089109", + "title": "The Yellow Star : The persecution of the Jews in Europe 1933-1945", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schoenberner, Gerhard", + "authors": [{ + "lf": "Schoenberner, Gerhard", + "fl": "Gerhard Schoenberner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Bantam, 1973.", + "date": "1973", + "summary": "The Yellow Star : The persecution of the Jews in Europe 1933-1945 by Gerhard Schoenberner (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 S3413" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Pictorial works"]], + "source": "Israel Union List", + "workcode": "1754737", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "288 " +}, +"265089158": { + "books_id": "265089158", + "title": "The Red String Book: The Power of Protection (Technology for the Soul Series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Berg, Yehuda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berg, Yehuda", + "fl": "Yehuda Berg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1571892486", + "isbn": { + "0": "1571892486", + "2": "9781571892485" + }, + "asin": "1571892486", + "ean": ["1571892486"], + "publication": "Research Centre of Kabbalah (2004), 94 pages", + "date": "2004", + "summary": "The Red String Book: The Power of Protection (Technology for the Soul Series) by Yehuda Berg (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.16"], + "wording": ["Jewish writings", + "Judaism", + "Kabbalah", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM525 .B4775" + }, + "source": "amazon uk books", + "workcode": "529286", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "94 p.; 6.5 inches", + "height": "6.5 inches", + "thickness": "0.5 inches", + "length": "4.75 inches", + "dimensions": "6.5 x 4.75 x 0.5 inches", + "weight": "0.34833037396 pounds", + "pages": "94 " +}, +"265089234": { + "books_id": "265089234", + "title": "Hitler: A Study in Tyranny", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bullock, Alan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bullock, Alan", + "fl": "Alan Bullock", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140135642", + "isbn": { + "0": "0140135642", + "2": "9780140135640" + }, + "asin": "0140135642", + "ean": ["8601300094359"], + "publication": "Penguin (1990), Edition: New Ed, 848 pages", + "date": "1990", + "summary": "Hitler: A Study in Tyranny by Alan Bullock (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.0860924"], + "wording": ["Biographies, Diaries And Journals", + "Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "History, geographic treatment, biography", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "DD247.H5" + }, + "source": "amazon uk books", + "workcode": "22909362", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "848 p.; 7.8 inches", + "height": "7.79526 inches", + "thickness": "1.41732 inches", + "length": "5.1181 inches", + "dimensions": "7.79526 x 5.1181 x 1.41732 inches", + "weight": "1.26104413864 pounds", + "pages": "848 " +}, +"265089272": { + "books_id": "265089272", + "title": "Jewish History: An Essay in the Philosophy of History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dubnow, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dubnow, Simon", + "fl": "Simon Dubnow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9386874571", + "isbn": { + "0": "9386874571", + "2": "9789386874573" + }, + "asin": "9386874571", + "ean": ["9386874571"], + "publication": "Alpha Editions (2018), 92 pages", + "date": "2018", + "summary": "Jewish History: An Essay in the Philosophy of History by Simon Dubnow (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["910.039"], + "wording": ["Geography & travel", + "History & geography", + "modified standard subdivisions of Geography and travel"] + }, + "lcc": { + "code": "DS118.D81" + }, + "subject": [["Jews", + "History"], + ["Jews", + "Philosophy"], + ["Jews", + "history"]], + "source": "amazon uk books", + "workcode": "2822684", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "92 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.22 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.22 inches", + "weight": "0.27998707274 pounds", + "pages": "92 " +}, +"265089340": { + "books_id": "265089340", + "title": "Human behaviour in the concentration camp", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Elie A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Elie A.", + "fl": "Elie A. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CIVB3", + "publication": "Jonathan Cape (1954), Edition: First Edition", + "date": "1954", + "summary": "Human behaviour in the concentration camp by Elie A. Cohen (1954)", + "language": ["Italian"], + "language_codeA": ["ita"], + "originallanguage": ["Dutch"], + "originallanguage_codeA": ["ita", + "dut"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D805.A2 C5613" + }, + "source": "amazon uk books", + "workcode": "667563", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265089367": { + "books_id": "265089367", + "title": "Josephus - The Jewish War.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Josephus, translated by G. A. Williamson", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Josephus, translated by G. A. Williamson", + "fl": "translated by G. A. Williamson Josephus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NYCS9E", + "publication": "Penguin Books Ltd (1959), Edition: First Edition, 411 pages", + "date": "1959", + "summary": "Josephus - The Jewish War. by translated by G. A. Williamson Josephus (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Greek (Ancient)"], + "originallanguage_codeA": ["eng", + "grc"], + "ddc": { + "code": ["933.05"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122 .J733" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "History", + "168 B.C.-135 A.D"], + "3": ["Jews", + "History", + "586 B.C.-70 A.D"], + "4": ["Jews", + "History", + "Rebellion, 66-73"], + "5": ["Jews", + "history"], + "7": ["Josephus, Flavius. De bello Judaico"] + }, + "originaltitle": "\u03a6\u03bb\u03b1\u03c5\u03af\u03bf\u03c5 \u1f38\u03c9\u03c3\u03ae\u03c0\u03bf\u03c5 \u1f31\u03c3\u03c4\u03bf\u03c1\u03af\u03b1 \u1f38\u03bf\u03c5\u03b4\u03b1\u03ca\u03ba\u03bf\u1fe6 \u03c0\u03bf\u03bb\u03ad\u03bc\u03bf\u03c5 \u03c0\u03c1\u1f78\u03c2 \u1fec\u03c9\u03bc\u03b1\u03af\u03bf\u03c5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03af\u03b1", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon uk books", + "workcode": "21217", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "411 p.", + "weight": "0.55 pounds", + "pages": "411 " +}, +"265089441": { + "books_id": "265089441", + "title": "Fackenheim, Emil Jewish Return into History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fackenheim, Emil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fackenheim, Emil", + "fl": "Emil Fackenheim", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805206493", + "isbn": { + "0": "0805206493", + "2": "9780805206494" + }, + "asin": "0805206493", + "ean": ["0805206493"], + "publication": "Schocken Books (1988), 309 pages", + "date": "1988", + "summary": "Fackenheim, Emil Jewish Return into History by Emil Fackenheim (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "BM645.H6 F3" + }, + "subject": { + "0": ["Holocaust (Jewish theology)"], + "2": ["Israel and the Diaspora"], + "4": ["Israel and the diaspora"], + "6": ["Palestine in Judaism"] + }, + "source": "amazon uk books", + "workcode": "1172283", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "309 p.", + "weight": "0.80689187892 pounds", + "pages": "309 " +}, +"265089469": { + "books_id": "265089469", + "title": "On the Tip of the Tongue: 500 Yiddish proverbs (English, Yiddish, Hebrew & Russian)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Guri, Yosef", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Guri, Yosef", + "fl": "Yosef Guri", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9659025033", + "isbn": { + "0": "9659025033", + "2": "9789659025039" + }, + "asin": "9659025033", + "ean": ["9659025033"], + "publication": "The Hebrew University Magnes Press (2006), Edition: First Edition, 250 pages", + "date": "2006", + "summary": "On the Tip of the Tongue: 500 Yiddish proverbs (English, Yiddish, Hebrew & Russian) by Yosef Guri (2006)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["492.49"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "Language", + "Other languages", + "[Formerly Yiddish. Now see 439.1]"] + }, + "lcc": { + "code": "PN6519.J5 G8" + }, + "source": "amazon.com books", + "workcode": "27494211", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "250 p.; 8.85 inches", + "height": "8.85 inches", + "thickness": "0.67 inches", + "length": "6.21 inches", + "dimensions": "8.85 x 6.21 x 0.67 inches", + "weight": "1.06262810284 pounds", + "pages": "250 " +}, +"265089493": { + "books_id": "265089493", + "title": "A History of the Jewish People.", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Parkes James", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Parkes James", + "fl": "Parkes James", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002M3HJVG", + "publication": "Penguin Books - Pelican Books (1967), Edition: Reprint", + "date": "1967", + "summary": "A History of the Jewish People. by Parkes James (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS118 .P32" + }, + "subject": [["Jews", + "History"], + ["Jews", + "history"]], + "source": "amazon uk books", + "workcode": "2615297", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265089574": { + "books_id": "265089574", + "title": "The cunning of history", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rubenstein, Richard", + "authors": [{ + "lf": "Rubenstein, Richard", + "fl": "Richard Rubenstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0061320684", + "isbn": { + "0": "0061320684", + "2": "9780061320682" + }, + "publication": "HarperCollins, 1987.", + "date": "1987", + "summary": "The cunning of history by Richard Rubenstein (1987)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940"], + "wording": ["History & geography", + "History of Europe", + "History of Europe"] + }, + "lcc": { + "code": "D810.J4 R78" + }, + "subject": { + "0": ["Civilization, Modern"], + "2": ["Civilization, modern"], + "3": ["Holocaust, Jewish (1939-1945)"], + "5": ["United States", + "Politics and government", + "1969-1974"] + }, + "workcode": "64630", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "128 p.; 8.02 inches", + "height": "8.02 inches", + "thickness": "0.34 inches", + "length": "5.34 inches", + "dimensions": "8.02 x 5.34 x 0.34 inches", + "weight": "0.36 pounds", + "pages": "128 " +}, +"265089622": { + "books_id": "265089622", + "title": "The Jews in our time", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bentwich, Norman De Mattos", + "secondaryauthor": "Simons, Leonard N.", + "secondaryauthorroles": "Donor.", + "authors": [{ + "lf": "Bentwich, Norman De Mattos", + "fl": "Norman De Mattos Bentwich" + }, + { + "lf": "Simons, Leonard N.", + "fl": "Leonard N. Simons", + "role": "Donor." + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Baltimore : Penguin Books, [1960]", + "date": "1960", + "summary": "The Jews in our time by Norman De Mattos Bentwich (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS140" + }, + "subject": [["Jews Politics and Government"], + ["Jews Politics and government"], + ["Jews Social conditions"], + ["Jews social conditions"]], + "source": "Brandeis University (Waltham, MA)", + "lccn": "60002976", + "workcode": "5985558", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "175 p.; 18 cm", + "height": "18 cm", + "dimensions": "18 cm", + "pages": "175 " +}, +"265089639": { + "books_id": "265089639", + "title": "An Introduction to the Books of the Old Testament", + "sortcharacter": "4", + "public": "true", + "primaryauthor": "Oesterley, W.O.E.; Robinson, Theodore H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oesterley, W.O.E.; Robinson, Theodore H.", + "fl": "W.O.E.; Robinson Oesterley, Theodore H.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0008A8V6W", + "publication": "Society for Promoting Christian Knowledge (1937), Edition: Reprint, 454 pages", + "date": "1937", + "summary": "An Introduction to the Books of the Old Testament by W.O.E.; Robinson Oesterley, Theodore H. (1937)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1140 .O4" + }, + "subject": [["Bible", + "Introductions", + "O. T"], + ["Bible", + "Introductions", + "O.T"], + ["Bible. O. T.", + "Introductions"], + ["Bible. O.T.", + "Introductions"]], + "source": "amazon uk books", + "workcode": "692344", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"265089728": { + "books_id": "265089728", + "title": "A treasury of the art of living", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Greenberg, Sidney", + "authors": [{ + "lf": "Greenberg, Sidney", + "fl": "Sidney Greenberg" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879801689", + "isbn": { + "0": "0879801689", + "2": "9780879801687" + }, + "publication": "Hartford [Conn.] : Hartmore House, [1963]", + "date": "1963", + "summary": "A treasury of the art of living by Sidney Greenberg (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["080"], + "wording": ["Computer science, information & general works", + "General collections", + "General collections"] + }, + "lcc": { + "code": "PN6081.G65" + }, + "subject": [["Maxims"], + ["QUOTATIONS"], + ["Quotations"], + ["quotations"]], + "source": "Brooklyn Public Library (Brooklyn, NY)", + "lccn": "63023807", + "workcode": "2694201", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 364 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xvi; 364 " +}, +"265089776": { + "books_id": "265089776", + "title": "Religious philosophy; a group of essays", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wolfson, Harry Austryn", + "authors": [{ + "lf": "Wolfson, Harry Austryn", + "fl": "Harry Austryn Wolfson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Atheneum, 1965.", + "date": "1965", + "summary": "Religious philosophy; a group of essays by Harry Austryn Wolfson (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200.1"], + "wording": ["Religion", + "Religion", + "Religion", + "Systems, scientific principles, psychology of religion, philosophy and religion"] + }, + "lcc": { + "code": "BL51" + }, + "subject": [["PHILOSOPHY AND RELIGION"], + ["Philosophy and Religion"], + ["Philosophy and religion"], + ["philosophy and religion"]], + "source": "Boston College", + "workcode": "314978", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 278 p.; 19 cm", + "height": "19 cm", + "dimensions": "19 cm", + "pages": "xii; 278 " +}, +"265089789": { + "books_id": "265089789", + "title": "The book of Ruth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hamilton, Jane", + "secondaryauthor": "Hamilton, Jane", + "authors": [{ + "lf": "Hamilton, Jane", + "fl": "Jane Hamilton" + }, + { + "lf": "Hamilton, Jane", + "fl": "Jane Hamilton" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780552777827", + "isbn": ["9780552777827", + "055277782X"], + "publication": "London : Black Swan, 2011.", + "date": "2011", + "summary": "The book of Ruth by Jane Hamilton (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.6"], + "wording": ["2000-", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3558.A4428 B66" + }, + "subject": { + "0": ["Domestic fiction"], + "2": ["Illinois", + "Fiction"], + "4": ["Large Type Books"], + "5": ["Large type books"], + "7": ["Middle West", + "Fiction"], + "9": ["Mothers and daughters", + "Fiction"] + }, + "originaltitle": "The Book of Ruth", + "awards": ["500 Great Books by Women", + "Audie Award", + "GLCA New Writers Award", + "Oprah's Book Club selection", + "PEN/Hemingway Award", + "WLA Literary Awards"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "workcode": "67666", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265089790": { + "books_id": "265089790", + "title": "The book of Ruth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hamilton, Jane", + "secondaryauthor": "Hamilton, Jane", + "authors": [{ + "lf": "Hamilton, Jane", + "fl": "Jane Hamilton" + }, + { + "lf": "Hamilton, Jane", + "fl": "Jane Hamilton" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780552777827", + "isbn": ["9780552777827", + "055277782X"], + "publication": "London : Black Swan, 2011.", + "date": "2011", + "summary": "The book of Ruth by Jane Hamilton (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.6"], + "wording": ["2000-", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3558.A4428 B66" + }, + "subject": { + "0": ["Domestic fiction"], + "2": ["Illinois", + "Fiction"], + "4": ["Large Type Books"], + "5": ["Large type books"], + "7": ["Middle West", + "Fiction"], + "9": ["Mothers and daughters", + "Fiction"] + }, + "originaltitle": "The Book of Ruth", + "awards": ["500 Great Books by Women", + "Audie Award", + "GLCA New Writers Award", + "Oprah's Book Club selection", + "PEN/Hemingway Award", + "WLA Literary Awards"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "workcode": "67666", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265089836": { + "books_id": "265089836", + "title": "When children ask about God", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kushner, Harold S.", + "authors": [{ + "lf": "Kushner, Harold S.", + "fl": "Harold S. Kushner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805208798", + "isbn": { + "0": "0805208798", + "2": "9780805208795" + }, + "publication": "New York : Schocken Books, c1989.", + "date": "1989", + "summary": "When children ask about God by Harold S. Kushner (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3/11", + "296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM610.K85 1989" + }, + "subject": [["God (Judaism) Study and teaching"], + ["Jewish children Religious life"], + ["Jewish children religious life"], + ["Jewish religious education of children"]], + "source": "Toronto Public Library (Toronto, ON)", + "lccn": "88043133", + "workcode": "454057", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "208 p.; 7.9 inches", + "height": "7.9 inches", + "thickness": "0.6 inches", + "length": "5.3 inches", + "dimensions": "7.9 x 5.3 x 0.6 inches", + "weight": "0.25 pounds", + "pages": "xxv; 176 " +}, +"265089854": { + "books_id": "265089854", + "title": "Understanding the prophets", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Blank, Sheldon H.", + "authors": [{ + "lf": "Blank, Sheldon H.", + "fl": "Sheldon H. Blank" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Union of American Hebrew Congregations [1969]", + "date": "1969", + "summary": "Understanding the prophets by Sheldon H. Blank (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.92/2", + "221.92"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Persons", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1198.B52" + }, + "subject": [["PROPHETS"], + ["Prophets"], + ["prophets"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "74092159", + "workcode": "1697499", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "138 p.; 20 cm", + "height": "20 cm", + "dimensions": "20 cm", + "pages": "138 " +}, +"265090073": { + "books_id": "265090073", + "title": "The God of old : inside the lost world of the Bible", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kugel, James L.", + "authors": [{ + "lf": "Kugel, James L.", + "fl": "James L. Kugel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0743235843", + "isbn": { + "0": "0743235843", + "2": "9780743235846" + }, + "publication": "New York : Free Press, c2003.", + "date": "2003", + "summary": "The God of old : inside the lost world of the Bible by James L. Kugel (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3/11/0901", + "296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BS1192.6.K84 2003" + }, + "subject": [["God Biblical Teaching"], + ["God Biblical teaching"]], + "source": "Boston Athenaeum (Boston, MA)", + "lccn": "2002045592", + "workcode": "447250", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 270 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xiii; 270 " +}, +"265090286": { + "books_id": "265090286", + "title": "Jews and synagogues, Venice, Florence, Rome, Leghorn : a practical guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fortis, Umberto", + "authors": [{ + "lf": "Fortis, Umberto", + "fl": "Umberto Fortis" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "8876660259", + "isbn": { + "0": "8876660259", + "2": "9788876660252" + }, + "publication": "Venezia : Edizioni Storti, 2001.", + "date": "2001", + "summary": "Jews and synagogues, Venice, Florence, Rome, Leghorn : a practical guide by Umberto Fortis (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Italian"], + "originallanguage_codeA": ["eng", + "ita"], + "ddc": { + "code": ["914.5"], + "wording": ["Geography & travel", + "Geography of and travel in Europe", + "History & geography", + "Italy, San Marino, Vatican City, Malta"] + }, + "lcc": { + "code": "2017 B 4942" + }, + "subject": [["Italy Guidebooks"], + ["Jews Italy"], + ["Synagogues Italy"]], + "source": "Israel Union List", + "lccn": "72093070", + "workcode": "2000756", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "139 p.; 21 cm", + "height": "21 cm", + "thickness": "0.4 inches", + "length": "4.1 inches", + "dimensions": "21 x 4.1 x 0.4 cm", + "weight": "0.35 pounds", + "pages": "139 " +}, +"265090348": { + "books_id": "265090348", + "title": "The Dead Sea scrolls : a reappraisal", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Allegro, John M.", + "authors": [{ + "lf": "Allegro, John M.", + "fl": "John M. Allegro" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140203761", + "isbn": { + "0": "0140203761", + "2": "9780140203769" + }, + "publication": "Harmondsworth[etc.] : Penguin, 1964.", + "date": "1964", + "summary": "The Dead Sea scrolls : a reappraisal by John M. Allegro (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["229.918"], + "wording": ["Apocrypha, pseudepigrapha, intertestamental works", + "Apostolic epistles and canons; Clementines", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM487 .A77" + }, + "subject": [["Dead Sea Scrolls"], + ["Dead Sea scrolls"]], + "originaltitle": "The Dead Sea Scrolls: A Reappraisal", + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "workcode": "115921", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "208 p.; 7 inches", + "height": "7 inches", + "thickness": "0.5 inches", + "length": "4.3 inches", + "dimensions": "7 x 4.3 x 0.5 inches", + "weight": "0.75 pounds", + "pages": "208 " +}, +"265090531": { + "books_id": "265090531", + "title": "The Sephardics of Curac\u0327ao: A study of socio-cultural patterns in flux (Anjerpublicaties, 11)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Karner, Frances P", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Karner, Frances P", + "fl": "Frances P Karner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CCMIU", + "publication": "Van Gorcum (1969), 94 pages", + "date": "1969", + "summary": "The Sephardics of Curac\u0327ao: A study of socio-cultural patterns in flux (Anjerpublicaties, 11) by Frances P Karner (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com all media", + "workcode": "32340698", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265090554": { + "books_id": "265090554", + "title": "The Sacred Canopy: Elements of a Sociological Theory of Religion", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Berger, Peter L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berger, Peter L.", + "fl": "Peter L. Berger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780385073059", + "isbn": ["9780385073059", + "0385073054"], + "asin": "0385073054", + "ean": ["0385073054"], + "publication": "Anchor (1990), Edition: Reprint, 240 pages", + "date": "1990", + "summary": "The Sacred Canopy: Elements of a Sociological Theory of Religion by Peter L. Berger (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.6"], + "wording": ["Culture and institutions", + "Religious institutions", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "BL60 .B42" + }, + "subject": [["Religion and sociology"]], + "source": "amazon.com all media", + "workcode": "84405", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 7.98 inches", + "height": "7.98 inches", + "thickness": "0.55 inches", + "length": "5.23 inches", + "dimensions": "7.98 x 5.23 x 0.55 inches", + "weight": "0.4629707502 pounds", + "pages": "240 " +}, +"265090650": { + "books_id": "265090650", + "title": "The international Jewish encyclopedia", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Isaacson, Ben", + "secondaryauthor": "Wigoder, Devorah", + "secondaryauthorroles": "Joint Author.", + "authors": [{ + "lf": "Isaacson, Ben", + "fl": "Ben Isaacson" + }, + { + "lf": "Wigoder, Devorah", + "fl": "Devorah Wigoder", + "role": "Joint Author." + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0134730666", + "isbn": { + "0": "0134730666", + "2": "9780134730660" + }, + "publication": "[Englewood Cliffs, N.J., Prentice-Hall, 1973]", + "date": "1973", + "summary": "The international Jewish encyclopedia by Ben Isaacson (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["910/.039/24", + "910.039"], + "wording": ["Geography & travel", + "History & geography", + "modified standard subdivisions of Geography and travel"] + }, + "lcc": { + "code": "DS102.8.I8 1973" + }, + "subject": [["ENCYCLOPEDIAS AND DICTIONARIES"], + ["Encyclopedias and Dictionaries"], + ["Encyclopedias and dictionaries"], + ["Jews Encyclopedias"], + ["encyclopedias and dictionaries"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "72013484", + "workcode": "239796", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "336 p.; 27 cm", + "height": "27 cm", + "dimensions": "27 cm", + "pages": "336 " +}, +"265090667": { + "books_id": "265090667", + "title": "Faith and Reason: An Introduction to Modern Jewish Thought (Classic Reprint)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bergman, Samuel Hugo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bergman, Samuel Hugo", + "fl": "Samuel Hugo Bergman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1330283651", + "isbn": { + "0": "1330283651", + "2": "9781330283653" + }, + "asin": "1330283651", + "ean": ["1330283651"], + "publication": "Forgotten Books (2018), 158 pages", + "date": "2018", + "summary": "Faith and Reason: An Introduction to Modern Jewish Thought (Classic Reprint) by Samuel Hugo Bergman (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B159.B45" + }, + "subject": [["Jewish philosophers"]], + "source": "amazon.com all media", + "workcode": "1634180", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "158 p.; 9.02 inches", + "height": "9.01573 inches", + "thickness": "0.342519 inches", + "length": "5.98424 inches", + "dimensions": "9.01573 x 5.98424 x 0.342519 inches", + "weight": "0.4950039168686 pounds", + "pages": "158 " +}, +"265090721": { + "books_id": "265090721", + "title": "Jewish philosophy and philosophers.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldwater, Raymond (Ed.)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldwater, Raymond (Ed.)", + "fl": "Raymond (Ed.) Goldwater", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CLMBS", + "publication": "The Hillel Foundation (1962), Edition: First Edition, 200 pages", + "date": "1962", + "summary": "Jewish philosophy and philosophers. by Raymond (Ed.) Goldwater (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com all media", + "workcode": "32340709", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"265090728": { + "books_id": "265090728", + "title": "A Guide to Hassidism", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Rabinowicz, H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabinowicz, H.", + "fl": "H. Rabinowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CKWYD", + "publication": "Thomas Yoseloff (1960), Edition: 1st Ed., 163 pages", + "date": "1960", + "summary": "A Guide to Hassidism by H. Rabinowicz (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.833"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .R27" + }, + "source": "amazon.com all media", + "workcode": "7092917", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "163 p.", + "weight": "0.44 pounds", + "pages": "163 " +}, +"265090729": { + "books_id": "265090729", + "title": "A Guide to Hassidism", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Rabinowicz, H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabinowicz, H.", + "fl": "H. Rabinowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CKWYD", + "publication": "Thomas Yoseloff (1960), Edition: 1st Ed., 163 pages", + "date": "1960", + "summary": "A Guide to Hassidism by H. Rabinowicz (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.833"], + "wording": ["Contemporary sects of Judaism", + "Jewish sects", + "Judaism", + "Mystical Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198 .R27" + }, + "source": "amazon.com all media", + "workcode": "7092917", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "163 p.", + "weight": "0.44 pounds", + "pages": "163 " +}, +"265090802": { + "books_id": "265090802", + "title": "Between the Generations", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dresner, Samuel H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dresner, Samuel H.", + "fl": "Samuel H. Dresner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876770421", + "isbn": { + "0": "0876770421", + "2": "9780876770429" + }, + "asin": "0876770421", + "ean": ["0876770421"], + "publication": "Hartmore House", + "summary": "Between the Generations by Samuel H. Dresner", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM727.D73" + }, + "source": "amazon.com all media", + "workcode": "10172502", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"265090845": { + "books_id": "265090845", + "title": "Jewish philosophy and philosophers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldwater, Raymond", + "authors": [{ + "lf": "Goldwater, Raymond", + "fl": "Raymond Goldwater" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : Hillel Foundation, 1962.", + "date": "1962", + "summary": "Jewish philosophy and philosophers by Raymond Goldwater (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "B154.J49 1962" + }, + "subject": [["Jewish Philosophers"], + ["Jewish philosophers"], + ["Philosophy, Jewish"], + ["philosophy, Jewish"]], + "source": "Toronto Public Library (Canada)", + "workcode": "3505205", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "200 p.; 19 cm", + "height": "19 cm", + "dimensions": "19 cm", + "pages": "200 " +}, +"265090875": { + "books_id": "265090875", + "title": "Jews and Arabs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Memmi, Albert", + "authors": [{ + "lf": "Memmi, Albert", + "fl": "Albert Memmi" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0879553278", + "isbn": { + "0": "0879553278", + "2": "9780879553272" + }, + "publication": "Chicago : J. P. O'Hara, c1975.", + "date": "1975", + "summary": "Jews and Arabs by Albert Memmi (1975)", + "language": ["English", + "French"], + "language_codeA": ["eng", + "fre"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119.7.M4413 1975" + }, + "subject": [["JEWISH-ARAB RELATIONS"], + ["Jewish-Arab Relations"], + ["Jewish-Arab relations"], + ["Jewish-arab relations"]], + "source": "Washington State University (Pullman, WA)", + "lccn": "75010697", + "workcode": "783957", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "220 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "220 " +}, +"265090924": { + "books_id": "265090924", + "title": "Kibbutz: venture in Utopia", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Spiro, Melford E.", + "authors": [{ + "lf": "Spiro, Melford E.", + "fl": "Melford E. Spiro" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cambridge, Harvard University Press, 1956.", + "date": "1956", + "summary": "Kibbutz: venture in Utopia by Melford E. Spiro (1956)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["335.9569"], + "wording": ["Asia", + "Biography And History", + "Economics", + "Israel (Kibbutzim)", + "Social sciences", + "Socialism and related systems"] + }, + "lcc": { + "code": "HX765.P3S7" + }, + "subject": [["Kibbutzim Case studies"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "56006523", + "workcode": "377717", + "entrydate": "2024-06-02", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 266 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xii; 266 " +}, +"268088104": { + "books_id": "268088104", + "title": "ATLAS OF THE ROMAN WORLD", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "CORNELL, TIM", + "authors": [{ + "lf": "CORNELL, TIM", + "fl": "TIM CORNELL" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0714821527", + "isbn": { + "0": "0714821527", + "2": "9780714821528" + }, + "publication": "1982.", + "date": "1982", + "summary": "ATLAS OF THE ROMAN WORLD by TIM CORNELL (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["937.02"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Italian Peninsula to 476 and adjacent territories to 476", + "Republic 509-31 B.C."] + }, + "lcc": { + "code": "DG77 .C597" + }, + "subject": { + "0": ["Rome", + "Civilization"], + "2": ["Rome", + "History"], + "3": ["Rome", + "Maps"], + "5": ["Rome", + "history"] + }, + "series": ["Cultural Atlas of the World", + "Cultural Atlas - Facts on File", + "Bildatlas der Weltkulturen"], + "originaltitle": "Atlas of the Roman World", + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "5022", + "1247", + "1599"], + "source": "HelMet - Helmet-kirjasto / Helsinki Metropolitan Libraries (Helsinki, Uusimaa)", + "oclc": "ocn0714821527", + "workcode": "82739", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268088134": { + "books_id": "268088134", + "title": "Interpreters of Judaism in the Late Twentieth Century (The B'nai B'rith History of the Jewish People)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Steven T.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Katz, Steven T.", + "fl": "Steven T. Katz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0910250235", + "isbn": { + "0": "0910250235", + "2": "9780910250238" + }, + "asin": "0910250235", + "ean": ["0910250235"], + "publication": "Bnai Brith Intl Continuing (1993)", + "date": "1993", + "summary": "Interpreters of Judaism in the Late Twentieth Century (The B'nai B'rith History of the Jewish People) by Steven T. Katz (1993)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM603 .I58" + }, + "subject": [["Holocaust (Jewish theology)"], + ["Jewish scholars"], + ["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["Judaism", + "Doctrines"]], + "series": ["B'nai B'rith history of the Jewish people"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Amazon.com", + "workcode": "2470592", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268088140": { + "books_id": "268088140", + "title": "The kiss of God : spiritual and mystical death in Judaism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Fishbane, Michael", + "authors": [{ + "lf": "Fishbane, Michael", + "fl": "Michael Fishbane" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0295975555", + "isbn": { + "0": "0295975555", + "2": "9780295975559" + }, + "publication": "Seattle : University of Washington Press, c1994", + "date": "1994", + "summary": "The kiss of God : spiritual and mystical death in Judaism by Michael Fishbane (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "296.929123" + }, + "subject": [["Death Religious aspects Judaism"], + ["God (Judaism) Worship and love"], + ["Spiritual Life Judaism"], + ["Spiritual life Judaism"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "915245", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xii; 156 " +}, +"268088163": { + "books_id": "268088163", + "title": "Seek my face, speak my name : a contemporary Jewish theology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Green, Arthur", + "authors": [{ + "lf": "Green, Arthur", + "fl": "Arthur Green" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685920", + "isbn": { + "0": "0876685920", + "2": "9780876685921" + }, + "publication": "Northvale, NJ : Jason Aronson, Inc., c1992.", + "date": "1992", + "summary": "Seek my face, speak my name : a contemporary Jewish theology by Arthur Green (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "\u202aM100D G741" + }, + "subject": [["GOD (JUDAISM)"], + ["God (Judaism)"], + ["JUDAISM"], + ["Judaism"], + ["Judaism Doctrines"], + ["Mysticism Judaism"], + ["Mysticism judaism"], + ["judaism"]], + "source": "Israel Union List", + "workcode": "930434", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxv, 266 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xxv; 266 " +}, +"268088176": { + "books_id": "268088176", + "title": "Exodus and exile : the structure of Jewish holidays", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harris, Monford", + "authors": [{ + "lf": "Harris, Monford", + "fl": "Monford Harris" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0800626516", + "isbn": { + "0": "0800626516", + "2": "9780800626518" + }, + "publication": "Minneapolis : Fortress Press, c1992.", + "date": "1992", + "summary": "Exodus and exile : the structure of Jewish holidays by Monford Harris (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4/3", + "296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690.H26 1992" + }, + "subject": [["Fasts and feasts Judaism History"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "91044014", + "workcode": "262963", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 129 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "ix; 129 " +}, +"268088193": { + "books_id": "268088193", + "title": "In speech and in silence : the Jewish quest for God", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wolpe, David J.", + "authors": [{ + "lf": "Wolpe, David J.", + "fl": "David J. Wolpe" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Henry Holt, 1993, c1992", + "date": "1992", + "summary": "In speech and in silence : the Jewish quest for God by David J. Wolpe (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.014"], + "wording": ["Judaism", + "Judaism", + "Language", + "Other religions", + "Philosophy And Psychology", + "Religion"] + }, + "lcc": { + "code": "\u0301®M100D WOL" + }, + "subject": [["Judaism Meditations"], + ["Philosophy, Jewish"], + ["Spiritual Life Judaism"], + ["Spiritual life Judaism"], + ["philosophy, Jewish"]], + "source": "Israel Union List", + "workcode": "1101317", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xiii; 210 " +}, +"268088200": { + "books_id": "268088200", + "title": "The art of Jewish living : the Shabbat Seder", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wolfson, Ron", + "authors": [{ + "lf": "Wolfson, Ron", + "fl": "Ron Wolfson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Federation of Jewish Men's Clubs, c1985", + "date": "1985", + "summary": "The art of Jewish living : the Shabbat Seder by Ron Wolfson (1985)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["A381 WOL a"] + }, + "lcc": { + "code": "BM685 .W584" + }, + "subject": [["Conservative Judaism Customs and practices"], + ["Sabbath Handbooks, manuals, etc"]], + "series": ["The Art of Jewish Living"], + "originaltitle": "The Art of Jewish Living: The Shabbat Seder", + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "58358", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "31 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "31 " +}, +"268088209": { + "books_id": "268088209", + "title": "Jewish Spirituality II (World Spirituality Series)", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0334024285", + "isbn": { + "0": "0334024285", + "2": "9780334024286" + }, + "asin": "0334024285", + "ean": ["0334024285"], + "publication": "Alban Books Ltd (1989)", + "date": "1989", + "summary": "Jewish Spirituality II (World Spirituality Series) (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723" + }, + "series": ["World Spirituality: An Encyclopedic History of the Religious Quest"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "2466790", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "1.54 pounds" +}, +"268088230": { + "books_id": "268088230", + "title": "Frontiers of Jewish Thought (The B'Nai B'Rith History of the Jewish People)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Steven T.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Katz, Steven T.", + "fl": "Steven T. Katz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0910250219", + "isbn": { + "0": "0910250219", + "2": "9780910250214" + }, + "asin": "0910250219", + "ean": ["0910250219"], + "publication": "Bnai Brith Books (1992), 346 pages", + "date": "1992", + "summary": "Frontiers of Jewish Thought (The B'Nai B'Rith History of the Jewish People) by Steven T. Katz (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .F76" + }, + "series": ["B'nai B'rith history of the Jewish people"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1599", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "1214764", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "346 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1.2 pounds", + "pages": "346 " +}, +"268088255": { + "books_id": "268088255", + "title": "The Frank Talmage memorial volume", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Walfish, Barry", + "authors": [{ + "lf": "Walfish, Barry", + "fl": "Barry Walfish" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9653110144", + "isbn": { + "0": "9653110144", + "2": "9789653110144" + }, + "publication": "Haifa : Haifa University Press, c1993.", + "date": "1993", + "summary": "The Frank Talmage memorial volume by Barry Walfish (1993)", + "language": ["Multiple languages", + "English"], + "language_codeA": ["mul", + "eng"], + "originallanguage_codeA": ["mul", + "eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1160" + }, + "subject": [["Christianity and other religions Judaism"], + ["Judaism Relations Christianity"], + ["Talmage, Frank"]], + "source": "Library of Congress (Washington, DC)", + "workcode": "3183220", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "349 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "349 " +}, +"268088258": { + "books_id": "268088258", + "title": "The Warburgs: The Twentieth-Century Odyssey of a Remarkable Jewish Family", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Chernow, Ron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chernow, Ron", + "fl": "Ron Chernow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0525431837", + "isbn": { + "0": "0525431837", + "2": "9780525431831" + }, + "asin": "0525431837", + "ean": ["0525431837"], + "publication": "Vintage (2016), Edition: Reprint, 880 pages", + "date": "2016", + "summary": "The Warburgs: The Twentieth-Century Odyssey of a Remarkable Jewish Family by Ron Chernow (2016)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.004924"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Jews", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS115 .C42" + }, + "subject": { + "0": ["Jewish bankers", + "Biography"], + "2": ["Jews", + "Germany", + "Biography"], + "4": ["Jews", + "United States", + "Biography"], + "6": ["Warburg family"] + }, + "awards": ["Notable Books List"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Business", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "20245", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "268320", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "880 p.; 9.16 inches", + "height": "9.16 inches", + "thickness": "1.69 inches", + "length": "6.05 inches", + "dimensions": "9.16 x 6.05 x 1.69 inches", + "weight": "2.4 pounds", + "pages": "880 " +}, +"268088278": { + "books_id": "268088278", + "title": "The Fall of the House of Habsburg", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Crankshaw, Edward", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Crankshaw, Edward", + "fl": "Edward Crankshaw", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780140064599", + "isbn": ["9780140064599", + "0140064591"], + "asin": "0140064591", + "ean": ["0140064591"], + "publication": "Penguin Books (1983), Edition: Reissue, 480 pages", + "date": "1983", + "summary": "The Fall of the House of Habsburg by Edward Crankshaw (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.604"], + "wording": ["Austria and Liechtenstein", + "Germany and neighboring central European countries", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DB85 .C7" + }, + "subject": [["Austria", + "History", + "Francis Joseph, 1848-1916"], + ["Austria", + "History", + "Franz Joseph I, 1848-1916"], + ["Franz Joseph I, Emperor of Austria, 1830-1916"], + ["Franz Joseph I, emperor of Austria, 1830-1916"], + ["Habsburg, House of"]], + "source": "amazon.com books", + "workcode": "237211", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "480 p.; 7.7 inches", + "height": "7.7 inches", + "thickness": "1.1 inches", + "length": "5 inches", + "dimensions": "7.7 x 5 x 1.1 inches", + "weight": "0.82 pounds", + "pages": "480 " +}, +"268088287": { + "books_id": "268088287", + "title": "A Time to Mourn a Time to Comfort (Art of Jewish Living Series)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Wolfson, Dr. Ron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wolfson, Dr. Ron", + "fl": "Dr. Ron Wolfson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1879045966", + "isbn": { + "0": "1879045966", + "2": "9781879045965" + }, + "asin": "0935665072", + "ean": ["0935665072"], + "publication": "The Federation of Jewish Men's Clubs (1993), 315 pages", + "date": "1993", + "summary": "A Time to Mourn a Time to Comfort (Art of Jewish Living Series) by Dr. Ron Wolfson (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM712 .W65" + }, + "subject": [["Consolation (Judaism)"], + ["Jewish mourning customs"]], + "series": ["The Art of Jewish Living"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "1184179", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "315 p.; 9 inches", + "height": "9 inches", + "thickness": "7.25 inches", + "length": "0.75 inches", + "dimensions": "9 x 0.75 x 7.25 inches", + "weight": "1.09 pounds", + "pages": "315 " +}, +"268088293": { + "books_id": "268088293", + "title": "The Empty Mirror: Experiences in a Japanese Zen Monastery", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Van de Wetering, Janwillem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Van de Wetering, Janwillem", + "fl": "Janwillem Van de Wetering", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0312207743", + "isbn": { + "0": "0312207743", + "2": "9780312207748" + }, + "asin": "0312207743", + "ean": ["0312207743"], + "publication": "St. Martin's Griffin (1999), Edition: First Edition, 146 pages", + "date": "1999", + "summary": "The Empty Mirror: Experiences in a Japanese Zen Monastery by Janwillem Van de Wetering (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["294.3657092"], + "wording": ["Buddhism", + "Monastics", + "Other religions", + "Religion", + "Religions of Indic origin", + "The Buddha, Monasticism"] + }, + "lcc": { + "code": "BQ9294.J3 W4713" + }, + "subject": [["Monastic and religious life (Zen Buddhism)", + "Japan"]], + "series": ["Zen trilogy"], + "originaltitle": "De Lege Spiegel", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "138247", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "146 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.36 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.36 inches", + "weight": "0.5 pounds", + "pages": "146 " +}, +"268088301": { + "books_id": "268088301", + "title": "Interpreting Judaism in a postmodern age", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kepnes, Steven", + "authors": [{ + "lf": "Kepnes, Steven", + "fl": "Steven Kepnes" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814746748", + "isbn": { + "0": "0814746748", + "2": "9780814746745" + }, + "publication": "New York : New York University Press, ©1996.", + "date": "1996", + "summary": "Interpreting Judaism in a postmodern age by Steven Kepnes (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296/.09/045", + "296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.I58 1996" + }, + "subject": [["11.20 Judaism: general"], + ["Hermeneutics Religious aspects Judaism"], + ["JUDAISM"], + ["Judaism"], + ["Judaism History"], + ["Judaism Modern period"], + ["Judaism Sacred books Hermeneutics"], + ["Judaism history"], + ["Postmodernism Religious aspects Judaism"], + ["judaism"]], + "source": "University of Connecticut (Mansfield, CT)", + "lccn": "95022103", + "workcode": "6465024", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 392 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xiii; 392 " +}, +"268088313": { + "books_id": "268088313", + "title": "The Finkler Question by Jacobson, Howard 1st (first) Edition (2010)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jacobson, Howard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jacobson, Howard", + "fl": "Howard Jacobson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00CF67UPA", + "publication": "Bloomsbury Publishing PLC (2010), Edition: First Edition, 307 pages", + "date": "2010", + "summary": "The Finkler Question by Jacobson, Howard 1st (first) Edition (2010) by Howard Jacobson (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["823.914"], + "wording": ["1900-", + "1901-1999", + "1945-1999", + "English & Old English literatures", + "English fiction", + "Literature"] + }, + "lcc": { + "code": "PR6060.A32 F56" + }, + "awards": ["Booker Prize", + "Globe and Mail Top 100 Book", + "Harold U. Ribalow Prize", + "International Dublin Literary Award", + "Kirkus Reviews Best Book of the Year", + "San Francisco Chronicle Best Book of the Year", + "The 50 Most Essential Works Of Jewish Fiction Of The Last 100 Years", + "The Morning News Tournament of Books", + "UC Berkeley Summer Reading List", + "Wingate Literary Prize"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "10219401", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268088354": { + "books_id": "268088354", + "title": "Uncommon wisdom : conversations with remarkable people", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Capra, Fritjof", + "authors": [{ + "lf": "Capra, Fritjof", + "fl": "Fritjof Capra" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671473220", + "isbn": { + "0": "0671473220", + "2": "9780671473228" + }, + "publication": "New York : Simon and Schuster, c1988.", + "date": "1988", + "summary": "Uncommon wisdom : conversations with remarkable people by Fritjof Capra (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["191"], + "wording": ["Modern western philosophy", + "Philosophy & psychology", + "Philosophy of United States and Canada"] + }, + "lcc": { + "code": "BP605.N48C37 1988" + }, + "subject": [["Capra, Fritjof"], + ["NEW AGE MOVEMENT"], + ["New Age Movement"], + ["New Age movement"], + ["New age movement"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "87020665", + "workcode": "287329", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "334 p.; 24 cm", + "height": "24 cm", + "thickness": "1.3 inches", + "length": "6.1 inches", + "dimensions": "24 x 6.1 x 1.3 cm", + "weight": "1.4 pounds", + "pages": "334 " +}, +"268088362": { + "books_id": "268088362", + "title": "The Library at Night", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Manguel, Alberto", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Manguel, Alberto", + "fl": "Alberto Manguel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780300151305", + "isbn": ["9780300151305", + "0300151306"], + "asin": "0300151306", + "ean": ["0300151306"], + "publication": "Yale University Press (2009), 400 pages", + "date": "2009", + "summary": "The Library at Night by Alberto Manguel (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["027.009"], + "wording": ["Computer science, information & general works", + "General libraries and archives", + "Library & information sciences"] + }, + "lcc": { + "code": "Z721" + }, + "subject": { + "0": ["Biblioth\u00e8ques"], + "1": ["Biblioth\u00e8ques", + "Histoire"], + "2": ["Books and reading"], + "3": ["Books and reading", + "History"], + "5": ["Libraries"], + "7": ["Libraries", + "History"], + "9": ["Libraries", + "history"], + "10": ["Livres et lecture"], + "11": ["libraries"] + }, + "originaltitle": "The Library at Night", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Literature Studies and Criticism"], + "genre_id": ["20275895", + "1247", + "1599", + "53740"], + "source": "amazon.com books", + "workcode": "1623398", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "400 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "9 x 5.5 x 1 inches", + "weight": "0.48060773116 pounds", + "pages": "400 " +}, +"268088387": { + "books_id": "268088387", + "title": "Stars of David: Prominent Jews Talk About Being Jewish", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pogrebin, Abigail", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pogrebin, Abigail", + "fl": "Abigail Pogrebin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0767916123", + "isbn": { + "0": "0767916123", + "2": "9780767916127" + }, + "asin": "0767916131", + "ean": ["0767916131"], + "publication": "Crown (2007), Edition: Reprint, 402 pages", + "date": "2007", + "summary": "Stars of David: Prominent Jews Talk About Being Jewish by Abigail Pogrebin (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920.0092924073"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "General and collective by localities", + "History & geography"] + }, + "lcc": { + "code": "E184 .A163" + }, + "subject": { + "0": ["Jews", + "United States", + "Identity"], + "2": ["Jews in public life", + "United States", + "Attitudes"], + "4": ["Jews in public life", + "United States", + "Biography"], + "6": ["Jews in public life", + "United States", + "Interviews"], + "8": ["United States", + "Ethnic relations"] + }, + "source": "amazon.com books", + "workcode": "362411", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "402 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.91 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.91 inches", + "weight": "0.70106999316 pounds", + "pages": "402 " +},"268088426": { + "books_id": "268088426", + "title": "The Interrogator: The Story of Hanns-Joachim Scharff, Master Interrogator of the Luftwaffe (Schiffer Military History)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Toliver, Raymond F.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Toliver, Raymond F.", + "fl": "Raymond F. Toliver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0764302612", + "isbn": { + "0": "0764302612", + "2": "9780764302619" + }, + "asin": "0764302612", + "ean": ["0764302612"], + "publication": "Schiffer Military History (1997), Edition: 1, 352 pages", + "date": "1997", + "summary": "The Interrogator: The Story of Hanns-Joachim Scharff, Master Interrogator of the Luftwaffe (Schiffer Military History) by Raymond F. Toliver (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D805.G3 T64" + }, + "subject": { + "0": ["Intelligence officers", + "Germany", + "Biography"], + "2": ["Scharff, Hanns-J. (Hanns-Joachim), 1907-1992"], + "3": ["World War, 1939-1945", + "Prisoners and prisons, German"], + "5": ["World War, 1939-1945", + "prisoners and prisons, German"] + }, + "source": "amazon.com books", + "workcode": "309565", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "352 p.; 9 inches", + "height": "9 inches", + "thickness": "1.2 inches", + "length": "6.4 inches", + "dimensions": "9 x 6.4 x 1.2 inches", + "weight": "1.64905771976 pounds", + "pages": "352 " +}, +"268088466": { + "books_id": "268088466", + "title": "Words to Live By", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenberg, Sidney", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Sidney", + "fl": "Sidney Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568219210", + "isbn": { + "0": "1568219210", + "2": "9781568219219" + }, + "asin": "1568219210", + "ean": ["1568219210"], + "publication": "Jason Aronson, Inc. (1996), Edition: First Thus, 376 pages", + "date": "1996", + "summary": "Words to Live By by Sidney Greenberg (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM740 .G73" + }, + "source": "amazon.com books", + "workcode": "1023934", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "376 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.81 inches", + "length": "6.42 inches", + "dimensions": "9.02 x 6.42 x 0.81 inches", + "weight": "1.10892517786 pounds", + "pages": "376 " +}, +"268088486": { + "books_id": "268088486", + "title": "This Is My God", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wouk, Herman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wouk, Herman", + "fl": "Herman Wouk", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316955140", + "isbn": { + "0": "0316955140", + "2": "9780316955140" + }, + "asin": "0316955140", + "ean": ["0316955140"], + "publication": "Back Bay Books (1992), Edition: Reprint, 345 pages", + "date": "1992", + "summary": "This Is My God by Herman Wouk (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561.W65" + }, + "subject": { + "0": ["Judaism"], + "2": ["Large type books"], + "3": ["judaism"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "29539", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "345 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.92 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.92 inches", + "weight": "0.73 pounds", + "pages": "345 " +}, +"268088490": { + "books_id": "268088490", + "title": "THE JEWS: A Treasury of Art and Literature", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "KellerSharon R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "KellerSharon R.", + "fl": "KellerSharon R.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0883639645", + "isbn": { + "0": "0883639645", + "2": "9780883639641" + }, + "asin": "0883639645", + "ean": ["0883639645"], + "publication": "Beaux Arts (1992), Edition: First Edition, 384 pages", + "date": "1992", + "summary": "THE JEWS: A Treasury of Art and Literature by KellerSharon R. (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "NX684.A4 J48" + }, + "subject": { + "0": ["Arts, Jewish"], + "2": ["Jews", + "Civilization"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Art & Design", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "9985304", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "586436", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "384 p.; 14.57 x 10.24 inches", + "height": "10.236220462 inches", + "thickness": "1.968503935 inches", + "length": "14.566929119 inches", + "dimensions": "10.236220462 x 14.566929119 x 1.968503935 inches", + "weight": "5.68 pounds", + "pages": "384 " +}, +"268088521": { + "books_id": "268088521", + "title": "Thinking about God: Jewish Views (JPS Essential Judaism)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Tuling, Rabbi Kari H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Tuling, Rabbi Kari H.", + "fl": "Rabbi Kari H. Tuling", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827613016", + "isbn": { + "0": "0827613016", + "2": "9780827613010" + }, + "asin": "0827613016", + "ean": ["0827613016"], + "publication": "JEWISH PUBLICATON SOCIETY (2020), 424 pages", + "date": "2020", + "summary": "Thinking about God: Jewish Views (JPS Essential Judaism) by Rabbi Kari H. Tuling (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM610.T85" + }, + "source": "amazon.com books", + "workcode": "25013337", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "424 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1 inches", + "weight": "1.2 pounds", + "pages": "424 " +}, +"268088548": { + "books_id": "268088548", + "title": "Jewish Literacy Revised Ed: The Most Important Things to Know About the Jewish Religion, Its People, and Its History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Telushkin, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Telushkin, Joseph", + "fl": "Joseph Telushkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0061374989", + "isbn": { + "0": "0061374989", + "2": "9780061374982" + }, + "asin": "0061374989", + "ean": ["0061374989"], + "publication": "William Morrow (2008), Edition: Revised, 800 pages", + "date": "2008", + "summary": "Jewish Literacy Revised Ed: The Most Important Things to Know About the Jewish Religion, Its People, and Its History by Joseph Telushkin (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM155 .T44" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "History"], + "8": ["Judaism", + "history"] + }, + "source": "amazon.com books", + "workcode": "86247", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "800 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2.25 inches", + "length": "6.12 inches", + "dimensions": "9.25 x 6.12 x 2.25 inches", + "weight": "2.25091969502 pounds", + "pages": "800 " +}, +"268088565": { + "books_id": "268088565", + "title": "Understanding American Judaism: Toward the Description of a Modern Religion (Volume 1)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000AQ56GM", + "publication": "KTAV Publishing House (1975), 306 pages", + "date": "1975", + "summary": "Understanding American Judaism: Toward the Description of a Modern Religion (Volume 1) by Jacob Neusner (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM205 .U5" + }, + "source": "amazon.com books", + "workcode": "9915993", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "306 p.", + "weight": "0.79 pounds", + "pages": "306 " +}, +"268088579": { + "books_id": "268088579", + "title": "The Dignity of Difference: How to Avoid the Clash of Civilizations", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sacks, Jonathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sacks, Jonathan", + "fl": "Jonathan Sacks", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0826468500", + "isbn": { + "0": "0826468500", + "2": "9780826468505" + }, + "asin": "0826468500", + "ean": ["0826468500"], + "publication": "Bloomsbury Continuum (2003), Edition: 2, 224 pages", + "date": "2003", + "summary": "The Dignity of Difference: How to Avoid the Clash of Civilizations by Jonathan Sacks (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["210"], + "wording": ["Philosophy & theory of religion", + "Philosophy and theory of religion", + "Religion"] + }, + "lcc": { + "code": "BL410 .S33" + }, + "subject": { + "0": ["Civilization, Modern"], + "1": ["Civilization, Modern", + "1950-"], + "2": ["Comparative civilization"], + "4": ["Difference (Psychology)"], + "5": ["Globalization"], + "7": ["Globalization", + "Religious aspects"], + "8": ["Peace", + "Religious aspects"], + "10": ["Religions", + "Relations"], + "12": ["globalization"] + }, + "awards": ["Grawemeyer Awards"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "28477", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "224 p.; 7.65 inches", + "height": "7.65 inches", + "thickness": "0.72 inches", + "length": "5.1 inches", + "dimensions": "7.65 x 5.1 x 0.72 inches", + "weight": "0.5401325419 pounds", + "pages": "224 " +}, +"268088614": { + "books_id": "268088614", + "title": "From Age-Ing to Sage-Ing: A Revolutionary Approach to Growing Older", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schachter-Shalomi, Zalman", + "primaryauthorrole": "Author", + "secondaryauthor": "Miller, Ronald S.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Schachter-Shalomi, Zalman", + "fl": "Zalman Schachter-Shalomi", + "role": "Author" + }, + { + "lf": "Miller, Ronald S.", + "fl": "Ronald S. Miller", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1455530603", + "isbn": { + "0": "1455530603", + "2": "9781455530601" + }, + "asin": "1455530603", + "ean": ["1455530603"], + "publication": "Balance (2014), Edition: Reprint, 336 pages", + "date": "2014", + "summary": "From Age-Ing to Sage-Ing: A Revolutionary Approach to Growing Older by Zalman Schachter-Shalomi (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.26"], + "wording": ["Age groups", + "Groups of people", + "Older people (60+)", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "HQ1061 .S3165" + }, + "subject": { + "0": ["Older people", + "Attitudes"], + "2": ["Older people", + "Psychology"], + "4": ["Self-actualization (Psychology) in old age"] + }, + "source": "amazon.com books", + "workcode": "1033483", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 8 inches", + "height": "8 inches", + "thickness": "1 inch", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 1 inches", + "weight": "0.61949895622 pounds", + "pages": "336 " +}, +"268088615": { + "books_id": "268088615", + "title": "Hebrew for Dummies (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobs, Jill Suzanne", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jacobs, Jill Suzanne", + "fl": "Jill Suzanne Jacobs", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0764554891", + "isbn": { + "0": "0764554891", + "2": "9780764554896" + }, + "asin": "0764554891", + "ean": ["0764554891"], + "publication": "For Dummies (2003), Edition: First Edition, 362 pages", + "date": "2003", + "summary": "Hebrew for Dummies (English and Hebrew Edition) by Jill Suzanne Jacobs (2003)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["492.482421"], + "wording": ["Afro-Asiatic languages", + "For English-speakers", + "For people speaking English and Old English", + "Hebrew", + "Language", + "Other languages", + "Standard Hebrew usage; applied linguistics; texts for learning the language", + "Structural approach to expression for people whose native language is different", + "Structural approach to expression; formal grammar"] + }, + "lcc": { + "code": "PJ4567 .J33" + }, + "subject": [["Hebrew language", + "Self-instruction"], + ["Hebrew language", + "Textbooks for foreign speakers", + "English"]], + "series": ["... voor Dummies", + "Voor Dummies", + "Pour les nuls", + "for Dummies", + "... f\u00fcr Dummies", + "F\u00fcr Dummies", + "f\u00fcr Dummies", + "Per negati", + "for Dummies Education", + "for Dummies Language & Literature"], + "genre": ["Nonfiction", + "General Nonfiction"], + "genre_id": ["20275895", + "1247"], + "source": "amazon.com books", + "workcode": "560568", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "362 p.; 9.1 inches", + "height": "9.1 inches", + "thickness": "0.9 inches", + "length": "7.3 inches", + "dimensions": "9.1 x 7.3 x 0.9 inches", + "weight": "1.21695168624 pounds", + "pages": "362 " +}, +"268088618": { + "books_id": "268088618", + "title": "Family Redeemed: Essays on Family Relationships (Meotzar HoRav, 1)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Soloveitchik, Joseph B.", + "primaryauthorrole": "Author", + "secondaryauthor": "Shatz, David|Wolowelsky, Joel B.", + "secondaryauthorroles": "Editor|Editor", + "authors": [{ + "lf": "Soloveitchik, Joseph B.", + "fl": "Joseph B. Soloveitchik", + "role": "Author" + }, + { + "lf": "Shatz, David", + "fl": "David Shatz", + "role": "Editor" + }, + { + "lf": "Wolowelsky, Joel B.", + "fl": "Joel B. Wolowelsky", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881257958", + "isbn": { + "0": "0881257958", + "2": "9780881257953" + }, + "asin": "0881257958", + "ean": ["0881257958"], + "publication": "Ktav Pub & Distributors Inc (2002), 207 pages", + "date": "2002", + "summary": "Family Redeemed: Essays on Family Relationships (Meotzar HoRav, 1) by Joseph B. Soloveitchik (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .S657" + }, + "series": ["Me-otzar HoRav Series: Selected Writings of Rabbi Joseph B. Soloveitchik"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2339587", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "207 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "1.3 pounds", + "pages": "207 " +}, +"268088619": { + "books_id": "268088619", + "title": "Approaches to Ancient Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Green, William Scott", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Green, William Scott", + "fl": "William Scott Green", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891304479", + "isbn": { + "0": "0891304479", + "2": "9780891304470" + }, + "asin": "0891304479", + "ean": ["0891304479"], + "publication": "UNKNO", + "summary": "Approaches to Ancient Judaism by William Scott Green", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM173.A66" + }, + "subject": [["Judaism", + "History", + "Post-exilic period, 586 B.C.-210 A.D"], + ["Rabbinical literature", + "History and criticism"], + ["Rabbinical literature", + "Study and teaching (Higher)"]], + "source": "amazon.com books", + "workcode": "2692915", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "0.5070632026 pounds" +}, +"268088625": { + "books_id": "268088625", + "title": "Judaism in Society: The Evidence of the Yerushalmi: Toward the Natural History of a Religion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592443664", + "isbn": { + "0": "1592443664", + "2": "9781592443666" + }, + "asin": "1592443664", + "ean": ["1592443664"], + "publication": "Wipf and Stock (2003), 332 pages", + "date": "2003", + "summary": "Judaism in Society: The Evidence of the Yerushalmi: Toward the Natural History of a Religion by Jacob Neusner (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM498 .N48" + }, + "series": ["Chicago Studies in the History of Judaism"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "5246370", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "332 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.75 inches", + "weight": "0.98987555638 pounds", + "pages": "332 " +}, +"268088645": { + "books_id": "268088645", + "title": "Jewish Stories One Generation Tells Another", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schram, Peninnah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schram, Peninnah", + "fl": "Peninnah Schram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568219806", + "isbn": { + "0": "1568219806", + "2": "9781568219806" + }, + "asin": "1568219806", + "ean": ["1568219806"], + "publication": "Jason Aronson, Inc. (1996), 544 pages", + "date": "1996", + "summary": "Jewish Stories One Generation Tells Another by Peninnah Schram (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM530 .S45" + }, + "subject": [["Jewish folk literature"], + ["Legends, Jewish"]], + "source": "amazon.com books", + "workcode": "179115", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "544 p.; 8.96 inches", + "height": "8.96 inches", + "thickness": "1.63 inches", + "length": "6.32 inches", + "dimensions": "8.96 x 6.32 x 1.63 inches", + "weight": "1.99959271634 pounds", + "pages": "544 " +}, +"268088658": { + "books_id": "268088658", + "title": "New Light From The Prophets", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Finkelstein", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Finkelstein", + "fl": "Finkelstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465050352", + "isbn": { + "0": "0465050352", + "2": "9780465050352" + }, + "asin": "0465050352", + "ean": ["0465050352"], + "publication": "Basic Books (1970), 151 pages", + "date": "1970", + "summary": "New Light From The Prophets by Finkelstein (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496 .F5" + }, + "subject": { + "0": ["Rabbinical literature", + "History and criticism"], + "2": ["Sifrei. Deuteronomy"] + }, + "source": "amazon.com books", + "workcode": "2957063", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268088681": { + "books_id": "268088681", + "title": "Our Sages, God, and Israel: An Anthology of the Talmud of the Land of Israel (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0940646188", + "isbn": { + "0": "0940646188", + "2": "9780940646186" + }, + "asin": "0940646188", + "ean": ["0940646188"], + "publication": "Rossel Books (1985), 181 pages", + "date": "1985", + "summary": "Our Sages, God, and Israel: An Anthology of the Talmud of the Land of Israel (English and Hebrew Edition) by Jacob Neusner (1985)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM516.T282 E5" + }, + "subject": [["Aggada", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "2773025", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "181 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "0.95 pounds", + "pages": "181 " +}, +"268088701": { + "books_id": "268088701", + "title": "The book of Amos: A commentary", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hammershaimb, Erling", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hammershaimb, Erling", + "fl": "Erling Hammershaimb", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805233741", + "isbn": { + "0": "0805233741", + "2": "9780805233742" + }, + "asin": "0805233741", + "ean": ["0805233741"], + "publication": "Schocken Books (1970), 148 pages", + "date": "1970", + "summary": "The book of Amos: A commentary by Erling Hammershaimb (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["224.8"], + "wording": ["Amos", + "Prophetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1585.H313" + }, + "source": "amazon.com books", + "workcode": "5166811", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268088704": { + "books_id": "268088704", + "title": "Deuteronomy and Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nicholson, E.W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nicholson, E.W.", + "fl": "E.W. Nicholson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "063112506X", + "isbn": { + "0": "063112506X", + "2": "9780631125068" + }, + "asin": "063112506X", + "ean": ["063112506X"], + "publication": "WileyBlackwell (1981), Edition: New Ed, 158 pages", + "date": "1981", + "summary": "Deuteronomy and Tradition by E.W. Nicholson (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.15"], + "wording": ["Deuteronomy", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1275 .N5" + }, + "subject": [["Bible. O.T. Deuteronomy", + "Introductions"]], + "source": "amazon.com books", + "workcode": "1942198", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "1.11 pounds", + "pages": "158 " +}, +"268088710": { + "books_id": "268088710", + "title": "The World of the Past, Two Volumes:", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hawkes, Jaquetta (Editor)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hawkes, Jaquetta (Editor)", + "fl": "Jaquetta (Editor) Hawkes", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000I3CWF0", + "publication": "Alfred A.Knopf (1963), Edition: First Edition", + "date": "1963", + "summary": "The World of the Past, Two Volumes: by Jaquetta (Editor) Hawkes (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.082"], + "wording": ["Geography & travel", + "Geography of and travel in ancient world", + "History & geography"] + }, + "lcc": { + "code": "GN738.H39" + }, + "source": "amazon.com books", + "workcode": "3633590", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"268088737": { + "books_id": "268088737", + "title": "Contemporary Jewish Ethics", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kellner, Menachem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kellner, Menachem", + "fl": "Menachem Kellner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0884829200", + "isbn": { + "0": "0884829200", + "2": "9780884829201" + }, + "asin": "0884829200", + "ean": ["0884829200"], + "publication": "Hebrew Pub Co (1978), Edition: First Edition, 452 pages", + "date": "1978", + "summary": "Contemporary Jewish Ethics by Menachem Kellner (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Finnish"], + "originallanguage_codeA": ["eng", + "fin"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1279.C66" + }, + "source": "amazon.com books", + "workcode": "1298395", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "452 p.", + "weight": "1.01 pounds", + "pages": "452 " +}, +"268088744": { + "books_id": "268088744", + "title": "Ebla: A Revelation in Archaeology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bermant, Chaim, and Michael Weitzman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bermant, Chaim, and Michael Weitzman", + "fl": "Chaim Bermant, and Michael Weitzman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812907655", + "isbn": { + "0": "0812907655", + "2": "9780812907650" + }, + "asin": "0812907655", + "ean": ["0812907655"], + "publication": "Times Books (1979), Edition: First Edition, 244 pages", + "date": "1979", + "summary": "Ebla: A Revelation in Archaeology by Chaim Bermant, and Michael Weitzman (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["939.4"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Other parts of ancient world", + "Syria"] + }, + "lcc": { + "code": "DS99.E25 B47" + }, + "subject": { + "0": ["Ebla (Extinct city)"], + "2": ["Matthiae, Paolo"], + "3": ["Pettinato, Giovanni"] + }, + "source": "amazon.com books", + "workcode": "617287", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "244 p.", + "weight": "1 pound", + "pages": "244 " +}, +"268088795": { + "books_id": "268088795", + "title": "The World of David and Solomon", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Eugene Maly", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eugene Maly", + "fl": "Eugene Maly", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000SSQL7K", + "publication": "Prentice-Hall (1966), Edition: First Edition", + "date": "1966", + "summary": "The World of David and Solomon by Eugene Maly (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.9500901"], + "wording": ["Geography, history, chronology, persons of Bible lands in Bible times", + "History", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1286.M3" + }, + "source": "amazon.com books", + "workcode": "10048864", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"268088809": { + "books_id": "268088809", + "title": "Homeward bound", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glatstein, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glatstein, Jacob", + "fl": "Jacob Glatstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0498066568", + "isbn": { + "0": "0498066568", + "2": "9780498066566" + }, + "asin": "0498066568", + "ean": ["0498066568"], + "publication": "T. Yoseloff (1969), Edition: First Edition, 142 pages", + "date": "1969", + "summary": "Homeward bound by Jacob Glatstein (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["892.491"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures", + "Yiddish literature"] + }, + "lcc": { + "code": "PJ5129.G535 V413" + }, + "source": "amazon.com books", + "workcode": "10684178", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "142 " +}, +"268088855": { + "books_id": "268088855", + "title": "Worlds of Jewish Prayer: A Festschrift in Honor of Rabbi Zalman M. Schachter-Shalomi", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiener, Shohama Harris", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiener, Shohama Harris", + "fl": "Shohama Harris Wiener", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876685823", + "isbn": { + "0": "0876685823", + "2": "9780876685822" + }, + "asin": "0876685823", + "ean": ["0876685823"], + "publication": "Jason Aronson, Inc. (1993), 358 pages", + "date": "1993", + "summary": "Worlds of Jewish Prayer: A Festschrift in Honor of Rabbi Zalman M. Schachter-Shalomi by Shohama Harris Wiener (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM669 .W67" + }, + "source": "amazon.com books", + "workcode": "5574054", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "358 p.; 9.26 inches", + "height": "9.26 inches", + "thickness": "1.41 inches", + "length": "6.46 inches", + "dimensions": "9.26 x 6.46 x 1.41 inches", + "weight": "1.54984970186 pounds", + "pages": "358 " +}, +"268088869": { + "books_id": "268088869", + "title": "Orthodoxy Confronts Modernity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sacks, Jonathan", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Sacks, Jonathan", + "fl": "Jonathan Sacks", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881253634", + "isbn": { + "0": "0881253634", + "2": "9780881253634" + }, + "asin": "0881253634", + "ean": ["0881253634"], + "publication": "Ktav Publishing House (1991), 148 pages", + "date": "1991", + "summary": "Orthodoxy Confronts Modernity by Jonathan Sacks (1991)", + "ddc": { + "code": ["297.832"], + "wording": ["By Division, Sect, or Movement", + "Islam, Babism, Bahai Faith", + "Other", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .O78" + }, + "subject": [["Judaism", + "20th century", + "Congresses"], + ["Orthodox Judaism", + "Congresses"], + ["Secularism", + "Congresses"]], + "source": "amazon.com", + "workcode": "1611593", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268088925": { + "books_id": "268088925", + "title": "By Hans Fallada - Every Man Dies Alone (1st Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00HTJSWVY", + "ean": ["8601200917703"], + "summary": "By Hans Fallada - Every Man Dies Alone (1st Edition) by unknown author", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32361114", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268088926": { + "books_id": "268088926", + "title": "Encounters with the Jewish people", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Raphael, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raphael, Chaim", + "fl": "Chaim Raphael", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "087441282X", + "isbn": { + "0": "087441282X", + "2": "9780874412826" + }, + "asin": "087441282X", + "ean": ["087441282X"], + "publication": "Behrman House (1979), 240 pages", + "date": "1979", + "summary": "Encounters with the Jewish people by Chaim Raphael (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "BM195 .R32" + }, + "source": "amazon.com books", + "workcode": "1107611", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268088941": { + "books_id": "268088941", + "title": "Jewish survival: Essays and studies", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weiss-Rosmarin, Trude", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weiss-Rosmarin, Trude", + "fl": "Trude Weiss-Rosmarin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FKFFS", + "publication": "Philosophical Library (1949), Edition: First Edition, 404 pages", + "date": "1949", + "summary": "Jewish survival: Essays and studies by Trude Weiss-Rosmarin (1949)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .W62" + }, + "subject": [["Judaism"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "4784621", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "404 p.", + "weight": "1 pound", + "pages": "404 " +}, +"268088960": { + "books_id": "268088960", + "title": "Oriental and Biblical studies;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Speiser, E. A", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Speiser, E. A", + "fl": "E. A Speiser", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BN4EM", + "publication": "University of Pennsylvania Press (1967), Edition: First Edition, 616 pages", + "date": "1967", + "summary": "Oriental and Biblical studies; by E. A Speiser (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.3"], + "wording": ["Antiquities of ancient countries", + "Geography & travel", + "Geography of and travel in ancient world", + "History & geography"] + }, + "lcc": { + "code": "DS42.S65" + }, + "subject": { + "0": ["Bible. O.T"], + "1": ["Middle East", + "Civilization", + "To 622"], + "3": ["Semitic languages"] + }, + "source": "amazon.com books", + "workcode": "2407791", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268088988": { + "books_id": "268088988", + "title": "Book Of Job: A Commentary", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "primaryauthorrole": "Author", + "secondaryauthor": "Gamoran, Emanuel", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof", + "role": "Author" + }, + { + "lf": "Gamoran, Emanuel", + "fl": "Emanuel Gamoran", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1258218429", + "isbn": { + "0": "1258218429", + "2": "9781258218423" + }, + "asin": "1258218429", + "ean": ["1258218429"], + "publication": "Literary Licensing, LLC (2011), 278 pages", + "date": "2011", + "summary": "Book Of Job: A Commentary by Solomon Bennett Freehof (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.1"], + "wording": ["Job", + "Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1415.F66" + }, + "subject": [["Bible. O.T. Job", + "Commentaries"]], + "series": ["The Jewish Commentary for Bible Readers"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2710015", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "278 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.58 inches", + "length": "5.98 inches", + "dimensions": "9.02 x 5.98 x 0.58 inches", + "weight": "0.82893810512 pounds", + "pages": "278 " +}, +"268088993": { + "books_id": "268088993", + "title": "Modern Jewish Educational Thought: Problems and Prospects. Editors: David Weinstein [And] Michael Yizhar - P[Related Titles: Mekorot Li-Ve Ayot Hahinukh Ha-Yehudi Be-Dorenu]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "David (1927-) Comp. Weinstein", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "David (1927-) Comp. Weinstein", + "fl": "David (1927-) Comp. Weinstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002B61L2W", + "publication": "Chicago, College Of Jewish Studies (1964), Edition: First Edition", + "date": "1964", + "summary": "Modern Jewish Educational Thought: Problems and Prospects. Editors: David Weinstein [And] Michael Yizhar - P[Related Titles: Mekorot Li-Ve Ayot Hahinukh Ha-Yehudi Be-Dorenu] by David (1927-) Comp. Weinstein (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591336", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089031": { + "books_id": "268089031", + "title": "The Jew and his history", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kochan, Lionel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kochan, Lionel", + "fl": "Lionel Kochan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0333192273", + "isbn": { + "0": "0333192273", + "2": "9780333192276" + }, + "asin": "0333192273", + "ean": ["0333192273"], + "publication": "Macmillan (1977), 164 pages", + "date": "1977", + "summary": "The Jew and his history by Lionel Kochan (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS115.5 .K62" + }, + "source": "amazon.com books", + "workcode": "6878879", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089043": { + "books_id": "268089043", + "title": "Jewish Papercuts: A History and Guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shadur, Joseph", + "primaryauthorrole": "Author", + "secondaryauthor": "Shadur, Yehudit", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Shadur, Joseph", + "fl": "Joseph Shadur", + "role": "Author" + }, + { + "lf": "Shadur, Yehudit", + "fl": "Yehudit Shadur", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0943376548", + "isbn": { + "0": "0943376548", + "2": "9780943376547" + }, + "asin": "0943376548", + "ean": ["0943376548"], + "publication": "Judah L Magnes Museum / Gefen Publishing House (1994), Edition: First Edition, 111 pages", + "date": "1994", + "summary": "Jewish Papercuts: A History and Guide by Joseph Shadur (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["736.98"], + "wording": ["Arts & recreation", + "Carving and carvings", + "Other materials", + "Paper cutting and folding", + "Sculpture, ceramics & metalwork"] + }, + "lcc": { + "code": "NK8553.E85 S5" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Art & Design"], + "genre_id": ["20275895", + "9985304"], + "source": "amazon.com books", + "workcode": "1145944", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "111 p.; 11.5 inches", + "height": "11.5 inches", + "thickness": "0.75 inches", + "length": "8.5 inches", + "dimensions": "11.5 x 8.5 x 0.75 inches", + "weight": "1.85 pounds", + "pages": "111 " +}, +"268089044": { + "books_id": "268089044", + "title": "Preface to Scripture", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007ET8S4", + "publication": "Union of American Hebrew Congregations (1970), 260 pages", + "date": "1970", + "summary": "Preface to Scripture by Solomon Bennett Freehof (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.6"], + "wording": ["Interpretation and criticism (Exegesis)", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1140.F72" + }, + "subject": [["Bible. O.T.", + "Introductions"]], + "source": "amazon.com books", + "workcode": "1665811", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268089055": { + "books_id": "268089055", + "title": "Book of Kings 1: A Commentary (The Jewish Commentary for Bible Readers)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Honor, Dr. Leo L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Honor, Dr. Leo L.", + "fl": "Dr. Leo L. Honor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000FQCHRS", + "publication": "Union of American Hebrew (1955), 367 pages", + "date": "1955", + "summary": "Book of Kings 1: A Commentary (The Jewish Commentary for Bible Readers) by Dr. Leo L. Honor (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.5307"], + "wording": ["Historical books of Old Testament", + "Kings", + "Kings 1", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1335.H6" + }, + "source": "amazon.com books", + "workcode": "4534067", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "367 p.", + "weight": "1.8 pounds", + "pages": "367 " +}, +"268089067": { + "books_id": "268089067", + "title": "The Origins of Zionism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Vital, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vital, David", + "fl": "David Vital", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0198274394", + "isbn": { + "0": "0198274394", + "2": "9780198274391" + }, + "asin": "0198274394", + "ean": ["0198274394"], + "publication": "Oxford University Press (1980), 412 pages", + "date": "1980", + "summary": "The Origins of Zionism by David Vital (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149" + }, + "subject": [["Herzl, Theodor, 1860-1904"], + ["Zionism", + "History"], + ["Zionism", + "history"], + ["?Hibbat Zion"]], + "source": "amazon.com books", + "workcode": "927660", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "412 p.; 8.5 x 0.94 inches", + "height": "0.9448818888 inches", + "thickness": "5.511811018 inches", + "length": "8.5039369992 inches", + "dimensions": "0.9448818888 x 8.5039369992 x 5.511811018 inches", + "weight": "1.10231131 pounds", + "pages": "412 " +}, +"268089099": { + "books_id": "268089099", + "title": "The life and thought of A.D. Gordon: pioneer, philosopher, and prophet of modern Israel,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rose, Herbert H", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rose, Herbert H", + "fl": "Herbert H Rose", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DMHN8", + "publication": "Bloch Pub. Co (1964), 151 pages", + "date": "1964", + "summary": "The life and thought of A.D. Gordon: pioneer, philosopher, and prophet of modern Israel, by Herbert H Rose (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["922.968"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "DS151.G6 R59" + }, + "subject": [["Gordon, Aaron David, 1856-1922"]], + "source": "amazon.com books", + "workcode": "3953841", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089127": { + "books_id": "268089127", + "title": "Crisis and Covenant: Jewish Thought After the Holocaust (Sherman Studies of Judaism in Modern Times)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sacks, Jonathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sacks, Jonathan", + "fl": "Jonathan Sacks", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0719042038", + "isbn": { + "0": "0719042038", + "2": "9780719042034" + }, + "asin": "0719042038", + "ean": ["0719042038"], + "publication": "Manchester Univ Pr (1993), 248 pages", + "date": "1993", + "summary": "Crisis and Covenant: Jewish Thought After the Holocaust (Sherman Studies of Judaism in Modern Times) by Jonathan Sacks (1993)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.S215" + }, + "source": "amazon.com", + "workcode": "7523918", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268089130": { + "books_id": "268089130", + "title": "Parallels Meet: Religion and Nationalism in the Early Zionist Movement (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Luz, Ehud", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Luz, Ehud", + "fl": "Ehud Luz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602979", + "isbn": { + "0": "0827602979", + "2": "9780827602977" + }, + "asin": "0827602979", + "ean": ["0827602979"], + "publication": "Jewish Pubn Society (1988), Edition: 1st English ed, 365 pages", + "date": "1988", + "summary": "Parallels Meet: Religion and Nationalism in the Early Zionist Movement (English and Hebrew Edition) by Ehud Luz (1988)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149 .L8913" + }, + "source": "amazon.com books", + "workcode": "3446532", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "365 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.25 inches", + "weight": "1.75047036028 pounds", + "pages": "365 " +}, +"268089132": { + "books_id": "268089132", + "title": "The Jews of Czechoslovakia: Historical Studies and Surveys Volume III", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dagan, Avigdor", + "primaryauthorrole": "Author", + "secondaryauthor": "Hirschler, Gertrude|Weiner, Lewis", + "secondaryauthorroles": "Author|Editor", + "authors": [{ + "lf": "Dagan, Avigdor", + "fl": "Avigdor Dagan", + "role": "Author" + }, + { + "lf": "Hirschler, Gertrude", + "fl": "Gertrude Hirschler", + "role": "Author" + }, + { + "lf": "Weiner, Lewis", + "fl": "Lewis Weiner", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602308", + "isbn": { + "0": "0827602308", + "2": "9780827602304" + }, + "asin": "0827602308", + "ean": ["0827602308"], + "publication": "Jewish Pubn Society (1984), Edition: First Edition, 3 pages", + "date": "1984", + "summary": "The Jews of Czechoslovakia: Historical Studies and Surveys Volume III by Avigdor Dagan (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.7"], + "wording": ["Czech Republic and Slovakia", + "Germany and neighboring central European countries", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DS135.C95 J45" + }, + "series": ["Jews of Czechoslovakia"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "16834244", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089154": { + "books_id": "268089154", + "title": "Rabbi Tarfon, the tradition, the man, and early Rabbinic Judaism (Brown Judaic studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gereboff, Joel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gereboff, Joel", + "fl": "Joel Gereboff", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891302573", + "isbn": { + "0": "0891302573", + "2": "9780891302575" + }, + "asin": "0891302573", + "ean": ["0891302573"], + "publication": "Published by Scholars Press for Brown University (1979), 483 pages", + "date": "1979", + "summary": "Rabbi Tarfon, the tradition, the man, and early Rabbinic Judaism (Brown Judaic studies) by Joel Gereboff (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM502.T37 G47" + }, + "source": "amazon.com books", + "workcode": "12140182", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "483 p.", + "weight": "1.7 pounds", + "pages": "483 " +}, +"268089174": { + "books_id": "268089174", + "title": "Zionism and the Creation of a New Society (Studies in Jewish History)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Halpern, the late Ben", + "primaryauthorrole": "Author", + "secondaryauthor": "Reinharz, Jehuda", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Halpern, the late Ben", + "fl": "the late Ben Halpern", + "role": "Author" + }, + { + "lf": "Reinharz, Jehuda", + "fl": "Jehuda Reinharz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195092090", + "isbn": { + "0": "0195092090", + "2": "9780195092097" + }, + "asin": "0195092090", + "ean": ["0195092090"], + "publication": "Oxford University Press (1998), 304 pages", + "date": "1998", + "summary": "Zionism and the Creation of a New Society (Studies in Jewish History) by the late Ben Halpern (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54"], + "wording": ["Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS149 .H344" + }, + "source": "amazon.com books", + "workcode": "658833", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.; 9.43 x 6.41 inches", + "height": "6.41 inches", + "thickness": "0.98 inches", + "length": "9.43 inches", + "dimensions": "6.41 x 9.43 x 0.98 inches", + "weight": "1.3999353637 pounds", + "pages": "304 " +}, +"268089184": { + "books_id": "268089184", + "title": "Arab Education in Israel (Contemporary Issues in the Middle East)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mar'i, Sami Khalil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mar'i, Sami Khalil", + "fl": "Sami Khalil Mar'i", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081560145X", + "isbn": { + "0": "081560145X", + "2": "9780815601456" + }, + "asin": "081560145X", + "ean": ["081560145X"], + "publication": "Syracuse University Press (1978), Edition: First Edition, 232 pages", + "date": "1978", + "summary": "Arab Education in Israel (Contemporary Issues in the Middle East) by Sami Khalil Mar'i (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["370.95694"], + "wording": ["Asia", + "Education", + "Education", + "History, geographic treatment, biography", + "Middle East", + "Social sciences"] + }, + "lcc": { + "code": "LA1443.7 .M37" + }, + "source": "amazon.com books", + "workcode": "3162904", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "232 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.5 inches", + "dimensions": "9.25 x 6.5 x 0.75 inches", + "weight": "1.1243575362 pounds", + "pages": "232 " +}, +"268089198": { + "books_id": "268089198", + "title": "Basic values in Jewish religion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Mordecai Menahem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Mordecai Menahem", + "fl": "Mordecai Menahem Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007GSEBO", + "publication": "Edwards Brothers (1963), 111 pages", + "date": "1963", + "summary": "Basic values in Jewish religion by Mordecai Menahem Kaplan (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.K24" + }, + "source": "amazon.com books", + "workcode": "8073003", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "111 p.", + "weight": "1.01 pounds", + "pages": "111 " +}, +"268089213": { + "books_id": "268089213", + "title": "The Friars and the Jews: The Evolution of Medieval Anti-Judaism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cohen, Jeremy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Jeremy", + "fl": "Jeremy Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0801492661", + "isbn": { + "0": "0801492661", + "2": "9780801492662" + }, + "asin": "0801492661", + "ean": ["0801492661"], + "publication": "Cornell University Press (1984), Edition: Reprint, 304 pages", + "date": "1984", + "summary": "The Friars and the Jews: The Evolution of Medieval Anti-Judaism by Jeremy Cohen (1984)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.8"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS145.C573" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "Amazon.com", + "workcode": "1105474", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "1 pounds", + "pages": "301 " +}, +"268089214": { + "books_id": "268089214", + "title": "Education in Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bentwich, Joseph Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bentwich, Joseph Solomon", + "fl": "Joseph Solomon Bentwich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0710034512", + "isbn": { + "0": "0710034512", + "2": "9780710034519" + }, + "asin": "0710034512", + "ean": ["0710034512"], + "publication": "London: Routledge & Kegan Paul, 1965 (1965), Edition: First Edition, 200 pages", + "date": "1965", + "summary": "Education in Israel by Joseph Solomon Bentwich (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["371.9478"], + "wording": ["Autistic Spectrum", + "Dependents", + "Education", + "Education of special classes", + "Schools and their activities; special education", + "Social sciences"] + }, + "lcc": { + "code": "LA1441.B46" + }, + "series": ["International Library of Sociology and Social Reconstruction"], + "genre": ["Nonfiction", + "Anthropology", + "Sociology"], + "genre_id": ["20275895", + "5022", + "5686"], + "source": "amazon.com books", + "workcode": "7733747", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089240": { + "books_id": "268089240", + "title": "Philosophy and Law: Essays Toward the Understanding of Maimonides and His Predecessors/Bk No 662", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Strauss, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Strauss, Leo", + "fl": "Leo Strauss", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602731", + "isbn": { + "0": "0827602731", + "2": "9780827602731" + }, + "asin": "0827602731", + "ean": ["0827602731"], + "publication": "Jewish Pubn Society (1987), Edition: 1, 138 pages", + "date": "1987", + "summary": "Philosophy and Law: Essays Toward the Understanding of Maimonides and His Predecessors/Bk No 662 by Leo Strauss (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B757.L38 S7613" + }, + "subject": [["Guttmann, Julius, 1880- Die philosophie des judentums"], + ["Law (Theology)"], + ["Maimonides, Moses, 1135-1204"], + ["Maimonides, Moses, 1135-1204. Dal?alat al-?h?a?ir?in"], + ["Philosophy, Jewish"]], + "source": "amazon.com books", + "workcode": "97698", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "138 p.", + "weight": "0.99 pounds", + "pages": "138 " +}, +"268089261": { + "books_id": "268089261", + "title": "Ben-Gurion Looks at the Bible (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "secondaryauthor": "Kolatch, Jonathan", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }, + { + "lf": "Kolatch, Jonathan", + "fl": "Jonathan Kolatch", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824601270", + "isbn": { + "0": "0824601270", + "2": "9780824601270" + }, + "asin": "0824601270", + "ean": ["0824601270"], + "publication": "Jonathan David Co., Inc (2008), 328 pages", + "date": "2008", + "summary": "Ben-Gurion Looks at the Bible (English and Hebrew Edition) by David Ben-Gurion (2008)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1192.B4313" + }, + "source": "amazon.com books", + "workcode": "2191316", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "328 p.; 9 inches", + "height": "9 inches", + "thickness": "0.88 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.88 inches", + "weight": "1.43080008038 pounds", + "pages": "328 " +}, +"268089305": { + "books_id": "268089305", + "title": "Understanding the Talmud", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trattner, Ernest R", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Trattner, Ernest R", + "fl": "Ernest R Trattner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DKYRO", + "publication": "T. Nelson (1955), Edition: First edition., 211 pages", + "date": "1955", + "summary": "Understanding the Talmud by Ernest R Trattner (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504.T7" + }, + "source": "amazon.com books", + "workcode": "5480275", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089346": { + "books_id": "268089346", + "title": "Jewish Meditation: A Practical Guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Aryeh", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Aryeh", + "fl": "Aryeh Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210377", + "isbn": { + "0": "0805210377", + "2": "9780805210378" + }, + "asin": "0805210377", + "ean": ["0805210377"], + "publication": "Schocken (1995), 176 pages", + "date": "1995", + "summary": "Jewish Meditation: A Practical Guide by Aryeh Kaplan (1995)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .K288" + }, + "subject": { + "0": ["Judaism", + "Doctrines"], + "2": ["Meditation", + "Judaism"] + }, + "source": "Amazon.com", + "workcode": "377677", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "0.39 inches", + "thickness": "0.39 inches", + "length": "0.39 inches", + "dimensions": "0.39 x 0.39 x 0.39 inches", + "weight": "0.44 pounds", + "pages": "176 " +}, +"268089361": { + "books_id": "268089361", + "title": "A Treasury of Tradition", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Lamm, Norman", + "primaryauthorrole": "Editor", + "secondaryauthor": "Wurzburger, Walter S.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Lamm, Norman", + "fl": "Norman Lamm", + "role": "Editor" + }, + { + "lf": "Wurzburger, Walter S.", + "fl": "Walter S. Wurzburger", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GWDJEQ", + "publication": "Rabbinical Council of America (1967), Edition: First Edition", + "date": "1967", + "summary": "A Treasury of Tradition by Norman Lamm (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40.L35" + }, + "subject": [["Orthodox Judaism", + "Addresses, essays, lectures"]], + "source": "amazon.com books", + "workcode": "1607469", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089405": { + "books_id": "268089405", + "title": "The Abyss of Despair (Yeven Metzulah): The Famous 17th Century Chronicle Depicting Jewish Life in Russia and Poland during the Chmielnicki Massacres of 1648-1649", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hanover, Nathan", + "primaryauthorrole": "Author", + "secondaryauthor": "Helmreich, William|Mesch, Abraham J.", + "secondaryauthorroles": "Introduction|Translator", + "authors": [{ + "lf": "Hanover, Nathan", + "fl": "Nathan Hanover", + "role": "Author" + }, + { + "lf": "Helmreich, William", + "fl": "William Helmreich", + "role": "Introduction" + }, + { + "lf": "Mesch, Abraham J.", + "fl": "Abraham J. Mesch", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0878559272", + "isbn": { + "0": "0878559272", + "2": "9780878559275" + }, + "asin": "0878559272", + "ean": ["0878559272"], + "publication": "Routledge (1983), Edition: 1, 150 pages", + "date": "1983", + "summary": "The Abyss of Despair (Yeven Metzulah): The Famous 17th Century Chronicle Depicting Jewish Life in Russia and Poland during the Chmielnicki Massacres of 1648-1649 by Nathan Hanover (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.71004924"], + "wording": ["History & geography", + "History of Europe", + "Russia and neighboring east European countries", + "Ukraine", + "[Ukraine now 947.7]"] + }, + "lcc": { + "code": "DS135.P6 H32" + }, + "source": "amazon.com books", + "workcode": "11554019", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "150 p.; 9.21 inches", + "height": "9.21 inches", + "thickness": "0.34 inches", + "length": "6.14 inches", + "dimensions": "9.21 x 6.14 x 0.34 inches", + "weight": "0.49824471212 pounds", + "pages": "150 " +}, +"268089409": { + "books_id": "268089409", + "title": "Grandfather J. B. : letters to my grandson", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bercovici, Joseph", + "secondaryauthor": "Grossman, Joel B.", + "authors": [{ + "lf": "Bercovici, Joseph", + "fl": "Joseph Bercovici" + }, + { + "lf": "Grossman, Joel B.", + "fl": "Joel B. Grossman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316089966", + "isbn": { + "0": "0316089966", + "2": "9780316089968" + }, + "publication": "Boston : Little, Brown, c1976.", + "date": "1976", + "summary": "Grandfather J. B. : letters to my grandson by Joseph Bercovici (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.9B", + "973.9"], + "wording": ["1901-", + "History & geography", + "History of North America", + "United States"] + }, + "lcc": { + "code": "PS3503.E629Z544" + }, + "subject": [["Bercovici, Joseph, b. 1879"], + ["Grossman, Joel B"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "75030926", + "workcode": "32591389", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiv, 210 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xiv; 210 " +}, +"268089433": { + "books_id": "268089433", + "title": "Persecution and the Art of Writing", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Strauss, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Strauss, Leo", + "fl": "Leo Strauss", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226777111", + "isbn": { + "0": "0226777111", + "2": "9780226777115" + }, + "asin": "0226777111", + "ean": ["0884860631358"], + "upc": ["884860631358"], + "publication": "University of Chicago Press (1988), Edition: Reprint, 214 pages", + "date": "1988", + "summary": "Persecution and the Art of Writing by Leo Strauss (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.42"], + "wording": ["Culture and institutions", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology of knowledge", + "Specific aspects of culture"] + }, + "lcc": { + "code": "B755 .S79" + }, + "subject": { + "0": ["Freedom of the press"], + "2": ["Judah, ha-Levi, 12th cent. Kit?ab al-?hujjah"], + "3": ["Judaism and philosophy"], + "5": ["Maimonides, Moses, 1135-1204. Dal?alat al-?h?a?ir?in"], + "6": ["Persecution"], + "8": ["Philosophy"], + "10": ["Philosophy and religion"], + "12": ["Philosophy, Jewish"], + "14": ["Philosophy, Medieval"], + "16": ["Political Science"], + "17": ["Political science"], + "19": ["Spinoza, Benedictus de, 1632-1677. Tractatus theologico-politicus"], + "20": ["philosophy"] + }, + "source": "amazon.com books", + "workcode": "97678", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "214 p.; 8.52 x 0.53 inches", + "height": "0.53 inches", + "thickness": "5.57 inches", + "length": "8.52 inches", + "dimensions": "0.53 x 8.52 x 5.57 inches", + "weight": "0.54895103238 pounds", + "pages": "214 " +}, +"268089463": { + "books_id": "268089463", + "title": "Modern Reform responsa,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0878201017", + "isbn": { + "0": "0878201017", + "2": "9780878201013" + }, + "asin": "B0006C5ITA", + "ean": ["0878201017"], + "publication": "Hebrew Union College Press (1971), Edition: First Edition, First Printing, 319 pages", + "date": "1971", + "summary": "Modern Reform responsa, by Solomon Bennett Freehof (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522 .R375" + }, + "subject": [["Jewish law", + "Reform Judaism"], + ["Reform Judaism", + "Customs and practices"], + ["Responsa", + "1800-"]], + "source": "amazon.com books", + "workcode": "1699946", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "319 p.", + "weight": "1.01 pounds", + "pages": "319 " +}, +"268089493": { + "books_id": "268089493", + "title": "English for Israelis; a guide for teachers", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levenston, Edward A.", + "authors": [{ + "lf": "Levenston, Edward A.", + "fl": "Edward A. Levenston" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem, Israel University Press [1970]", + "date": "1970", + "summary": "English for Israelis; a guide for teachers by Edward A. Levenston (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["428.2/4924", + "428.2"], + "wording": ["English & Old English languages", + "Language", + "Standard English usage (Prescriptive linguistics)", + "Structural approach to expression; formal grammar"] + }, + "lcc": { + "code": "PE1130.H5L4" + }, + "subject": [["English language Textbooks for foreign speakers Hebrew"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "79953526 //", + "workcode": "32591405", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 242 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xi; 242 " +}, +"268089502": { + "books_id": "268089502", + "title": "A treasury of responsa", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, Jewish Publication Society of America, 1963.", + "date": "1963", + "summary": "A treasury of responsa by Solomon Bennett Freehof (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.A1F7 1963" + }, + "subject": [["JUDAISM"], + ["Judaism"], + ["Responsa"], + ["judaism"]], + "source": "Johns Hopkins University (Baltimore, MD)", + "lccn": "62012951", + "workcode": "1699934", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiv, 313 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xiv; 313 " +}, +"268089504": { + "books_id": "268089504", + "title": "Rabbinic Judaism in the making; a chapter in the history of the Halakhah from Ezra to Judah I", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Guttmann, Alexander", + "authors": [{ + "lf": "Guttmann, Alexander", + "fl": "Alexander Guttmann" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081434402X", + "isbn": { + "0": "081434402X", + "2": "9780814344026" + }, + "publication": "Detroit, Wayne State University Press, 1970.", + "date": "1970", + "summary": "Rabbinic Judaism in the making; a chapter in the history of the Halakhah from Ezra to Judah I by Alexander Guttmann (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1/23", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501.2.G85 1970" + }, + "subject": [["Tannaim"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "69010525", + "workcode": "3569124", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xx, 323 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xx; 323 " +}, +"268089505": { + "books_id": "268089505", + "title": "Nine Questions People Ask About Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Prager, Dennis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Prager, Dennis", + "fl": "Dennis Prager", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671622617", + "isbn": { + "0": "0671622617", + "2": "9780671622619" + }, + "asin": "0671622617", + "ean": ["0671622617"], + "publication": "Touchstone (1986), Edition: Reprint, 224 pages", + "date": "1986", + "summary": "Nine Questions People Ask About Judaism by Dennis Prager (1986)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.74"], + "wording": ["Jewish Living", + "Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .P7" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Jewish way of life", + "Addresses, essays, lectures"], + "3": ["Orthodox Judaism"], + "5": ["Orthodox Judaism", + "Addresses, essays, lectures"] + }, + "source": "Amazon.com", + "workcode": "308703", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.4 inches", + "thickness": "0.6 inches", + "length": "5.5 inches", + "dimensions": "8.4 x 5.5 x 0.6 inches", + "weight": "0.7 pounds", + "pages": "224 " +}, +"268089548": { + "books_id": "268089548", + "title": "The Responsa literature", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, The Jewish Publication Society of America, 1955-5715.", + "date": "1955", + "summary": "The Responsa literature by Solomon Bennett Freehof (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM646.F68" + }, + "subject": [["CHR 1955"], + ["CHR 5715"], + ["PRO Potok, Adena (donor) (Potok Collection copy)"], + ["PRO Potok, Chaim (autograph) (Potok Collection copy)"], + ["RABBINICAL LITERATURE"], + ["Rabbinical Literature"], + ["Rabbinical literature"], + ["Responsa"], + ["Responsa History and criticism"], + ["rabbinical literature"]], + "source": "University of Pennsylvania (Philadelphia, PA)", + "lccn": "55006706", + "workcode": "866609", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "304 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "304 " +}, +"268089575": { + "books_id": "268089575", + "title": "Israel in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080703603X", + "isbn": { + "0": "080703603X", + "2": "9780807036037" + }, + "asin": "080703603X", + "ean": ["080703603X"], + "publication": "Beacon Press (1985), Edition: First Edition", + "date": "1985", + "summary": "Israel in America by Jacob Neusner (1985)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205 .N485" + }, + "subject": [["Judaism", + "United States"]], + "source": "amazon.com books", + "workcode": "2944019", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.55 pounds" +}, +"268089601": { + "books_id": "268089601", + "title": "Reform responsa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cincinnati [Ohio] : Hebrew Union College Press, 1960.", + "date": "1960", + "summary": "Reform responsa by Solomon Bennett Freehof (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.36R38 1960" + }, + "subject": [["Jewish Law Reform Judaism"], + ["Jewish law Reform Judaism"], + ["Jewish law Reform judaism"], + ["Reform Judaism Customs and practices"], + ["Reform Judaism customs and practices"], + ["Responsa"]], + "source": "Johns Hopkins University (Baltimore, MD)", + "lccn": "60012708", + "workcode": "2966265", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 226 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xi; 226 " +}, +"268089666": { + "books_id": "268089666", + "title": "Contemporary Reform responsa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0878201084", + "isbn": { + "0": "0878201084", + "2": "9780878201082" + }, + "publication": "[Cincinnati] : Hebrew Union College Press, 1974.", + "date": "1974", + "summary": "Contemporary Reform responsa by Solomon Bennett Freehof (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1/8", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.36.R368" + }, + "subject": [["Reform Judaism"], + ["Responsa"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "University of Pennsylvania (Philadelphia, PA)", + "lccn": "74023748", + "workcode": "2471245", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 309 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "ix; 309 " +}, +"268089677": { + "books_id": "268089677", + "title": "Reading the Book : making the Bible a timeless text", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Visotzky, Burton L.", + "authors": [{ + "lf": "Visotzky, Burton L.", + "fl": "Burton L. Visotzky" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805210725", + "isbn": { + "0": "0805210725", + "2": "9780805210729" + }, + "publication": "New York : Schocken Books, c1996.", + "date": "1996", + "summary": "Reading the Book : making the Bible a timeless text by Burton L. Visotzky (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.6/1", + "220.6"], + "wording": ["Interpretation and criticism (Exegesis)", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS511.2.V57 1996" + }, + "subject": [["Midrash History and Criticism"], + ["Midrash History and criticism"]], + "source": "Brandeis University (Waltham, MA)", + "lccn": "96017783", + "workcode": "1288632", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 240 p.; 21 cm", + "height": "21 cm", + "thickness": "0.6 inches", + "length": "5.2 inches", + "dimensions": "21 x 5.2 x 0.6 cm", + "weight": "0.5 pounds", + "pages": "xii; 240 " +}, +"268089690": { + "books_id": "268089690", + "title": "Current Reform responsa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[Cincinnati] Hebrew Union College Press, 1969.", + "date": "1969", + "summary": "Current Reform responsa by Solomon Bennett Freehof (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1/8", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.36.R37" + }, + "subject": [["Jewish Law Reform Judaism"], + ["Jewish law Reform Judaism"], + ["Jewish law Reform judaism"], + ["Reform Judaism Customs and practices"], + ["Reform Judaism customs and practices"], + ["Responsa"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "68057979", + "workcode": "25228334", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "viii, 259 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "viii; 259 " +}, +"268089720": { + "books_id": "268089720", + "title": "Recent Reform responsa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cincinnati [Ohio] : Hebrew Union College Press, 1963.", + "date": "1963", + "summary": "Recent Reform responsa by Solomon Bennett Freehof (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.36.R377 1963" + }, + "subject": [["Jewish Law Reform Judaism"], + ["Jewish law Reform Judaism"], + ["Jewish law Reform judaism"], + ["Reform Judaism Customs and practices"], + ["Reform Judaism customs and practices"], + ["Responsa"]], + "source": "Johns Hopkins University (Baltimore, MD)", + "lccn": "63015720", + "workcode": "8401156", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 232 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xi; 232 " +}, +"268089722": { + "books_id": "268089722", + "title": "Vision : a biography of Harry Friedenwald", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levin, Alexandra Lee", + "authors": [{ + "lf": "Levin, Alexandra Lee", + "fl": "Alexandra Lee Levin" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish Publication Society of America, 1964", + "date": "1964", + "summary": "Vision : a biography of Harry Friedenwald by Alexandra Lee Levin (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920.7"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "History & geography", + "People by gender or sex"] + }, + "lcc": { + "code": "RE36.F7 L4" + }, + "subject": [["Friedenwald, Harry"]], + "source": "LIBRIS - Kungliga biblioteket / Royal Library of Sweden (Stockholm, Stockholm)", + "workcode": "9589931", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xviii; 469 " +}, +"268089737": { + "books_id": "268089737", + "title": "Persons and Institutions in Early Rabbinic Judaism (Brown Judaic studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Green, William Scott", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Green, William Scott", + "fl": "William Scott Green", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0891301313", + "isbn": { + "0": "0891301313", + "2": "9780891301318" + }, + "asin": "0891301313", + "ean": ["0891301313"], + "publication": "Scholars Pr (1977), 319 pages", + "date": "1977", + "summary": "Persons and Institutions in Early Rabbinic Judaism (Brown Judaic studies) by William Scott Green (1977)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496.P47" + }, + "source": "amazon.com", + "workcode": "6874872", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268089756": { + "books_id": "268089756", + "title": "Reform responsa for our time", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[Cincinnati] : The Hebrew Union College Press, 1977", + "date": "1977", + "summary": "Reform responsa for our time by Solomon Bennett Freehof (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197" + }, + "subject": [["Reform Judaism"]], + "source": "Israel Union List", + "workcode": "1699924", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxvii, 320 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xxvii; 320 " +}, +"268089767": { + "books_id": "268089767", + "title": "Jewish education in democratic society", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Jack", + "authors": [{ + "lf": "Cohen, Jack", + "fl": "Jack Cohen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Reconstructionist Press [1964]", + "date": "1964", + "summary": "Jewish education in democratic society by Jack Cohen (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["371.985693"], + "wording": ["Education", + "Education of special classes", + "Schools and their activities; special education", + "Social sciences", + "Special nationalities [No Longer Used]"] + }, + "lcc": { + "code": "LC741.C56" + }, + "subject": [["Jews United States. Education"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "63023298", + "workcode": "3333132", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 350 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xiii; 350 " +}, +"268089799": { + "books_id": "268089799", + "title": "Modern Jewish preaching", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Bloch publishing company, 1941.", + "date": "1941", + "summary": "Modern Jewish preaching by Solomon Bennett Freehof (1941)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM730.F7" + }, + "subject": [["Jewish preaching"]], + "source": "University of Pennsylvania (Philadelphia, PA)", + "lccn": "42000596", + "workcode": "32591428", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "171 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "171 " +}, +"268089823": { + "books_id": "268089823", + "title": "The Sabbath service an exposition and analysis of the structure, contents, language and ideas", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jacobson, Bernhard S.", + "authors": [{ + "lf": "Jacobson, Bernhard S.", + "fl": "Bernhard S. Jacobson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel Aviv \"Sinai\" Pub. 1981.", + "date": "1981", + "summary": "The Sabbath service an exposition and analysis of the structure, contents, language and ideas by Bernhard S. Jacobson (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "BM675.S3Z7513 1981" + }, + "source": "Hebrew College (Newton Centre, MA)", + "workcode": "32591429", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxv, 454 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xxv; 454 " +}, +"268089825": { + "books_id": "268089825", + "title": "The responsa of Solomon Luria (Maharshal)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hurwitz, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hurwitz, Simon", + "fl": "Simon Hurwitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007I987G", + "publication": "Bloch Pub. Co (1968), Edition: 2nd, 181 pages", + "date": "1968", + "summary": "The responsa of Solomon Luria (Maharshal) by Simon Hurwitz (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "28449888", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268089860": { + "books_id": "268089860", + "title": "Life & teachings of Isaiah Horowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Newman, Eugene", + "authors": [{ + "lf": "Newman, Eugene", + "fl": "Eugene Newman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0950273902", + "isbn": { + "0": "0950273902", + "2": "9780950273907" + }, + "publication": "London, E. Newman, (24 Wycombe Gardens), 1972.", + "date": "1972", + "summary": "Life & teachings of Isaiah Horowitz by Eugene Newman (1972)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.6/1B", + "296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.H7N48" + }, + "subject": [["Horowitz, Isaiah, approximately 1565-1630"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "73160977", + "workcode": "5981467", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "viii, 216 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "viii; 216 " +}, +"268089865": { + "books_id": "268089865", + "title": "The Jews in their land in the Talmudic age, 70-640 C.E.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Alon, Gedalia", + "authors": [{ + "lf": "Alon, Gedalia", + "fl": "Gedalia Alon" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652233528", + "isbn": { + "0": "9652233528", + "2": "9789652233523" + }, + "publication": "Jerusalem : Magnes Press, the Hebrew University, 1980-1984.", + "date": "1980", + "summary": "The Jews in their land in the Talmudic age, 70-640 C.E. by Gedalia Alon (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["D2 ALO j"] + }, + "lcc": { + "code": "DS123 .A713" + }, + "subject": [["Israel History 70-638"], + ["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Jews in Israel History"]], + "source": "Israel Union List", + "workcode": "1113463", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "2", + "physical_description": "801 p.; 24 cm", + "height": "24 cm", + "thickness": "1.1 inches", + "length": "5.9 inches", + "dimensions": "24 x 5.9 x 1.1 cm", + "weight": "1.4 pounds", + "pages": "801 " +}, +"268089873": { + "books_id": "268089873", + "title": "My father's house", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Allon, Yigal", + "authors": [{ + "lf": "Allon, Yigal", + "fl": "Yigal Allon" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393074986", + "isbn": { + "0": "0393074986", + "2": "9780393074987" + }, + "publication": "New York : Norton, c1976.", + "date": "1976", + "summary": "My father's house by Yigal Allon (1976)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94/05/0924B", + "956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.6.A49A3213" + }, + "subject": [["Allon, Yigal, 1918-1980"], + ["Paikovits family"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "75043945", + "workcode": "3273470", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "204 p.; 22 cm", + "height": "22 cm", + "thickness": "0.8 inches", + "length": "5.9 inches", + "dimensions": "22 x 5.9 x 0.8 cm", + "weight": "0.95 pounds", + "pages": "204 " +}, +"268089909": { + "books_id": "268089909", + "title": "The Jews in the Renaissance", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roth, Cecil", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827601034", + "isbn": { + "0": "0827601034", + "2": "9780827601031" + }, + "publication": "Philadelphia : Jewish Publication Society of America, 1977, c1959.", + "date": "1959", + "summary": "The Jews in the Renaissance by Cecil Roth (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["945.05"], + "wording": ["History & geography", + "History of Europe", + "Italy", + "Italy, San Marino, Vatican City, Malta", + "Renaissance 1300-1494"] + }, + "lcc": { + "code": "DS113.R66" + }, + "subject": [["ITALY"], + ["Italy"], + ["Jews Intellectual life"], + ["RENAISSANCE"], + ["Renaissance"], + ["Renaissance Italy"], + ["italy"], + ["renaissance"], + ["renaissance Italy"]], + "source": "Cornell University (Ithaca, NY)", + "workcode": "560593", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 378 p.; 21 cm", + "height": "21 cm", + "thickness": "1 inch", + "length": "5.4 inches", + "dimensions": "21 x 5.4 x 1 cm", + "weight": "0.95 pounds", + "pages": "xii; 378 " +}, +"268089913": { + "books_id": "268089913", + "title": "Modern Jewish preaching", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Bloch publishing company, 1941.", + "date": "1941", + "summary": "Modern Jewish preaching by Solomon Bennett Freehof (1941)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM730.F7" + }, + "subject": [["Jewish preaching"]], + "source": "University of Pennsylvania (Philadelphia, PA)", + "lccn": "42000596", + "workcode": "32591428", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "171 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "171 " +}, +"268089922": { + "books_id": "268089922", + "title": "Ezra-Nehemiah (Anchor Bible Series, Vol. 14)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Myers, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Myers, Jacob", + "fl": "Jacob Myers", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385046952", + "isbn": { + "0": "0385046952", + "2": "9780385046954" + }, + "asin": "0385046952", + "ean": ["0385046952"], + "publication": "Anchor Bible (1965), Edition: First American Edition, 268 pages", + "date": "1965", + "summary": "Ezra-Nehemiah (Anchor Bible Series, Vol. 14) by Jacob Myers (1965)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.7"], + "wording": ["Ezra", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS192.A1 .G3" + }, + "subject": [["Bible. O.T. Ezra", + "Commentaries"], + ["Bible. O.T. Nehemiah", + "Commentaries"]], + "series": ["Anchor Yale Bible Commentaries", + "Anchor Bible", + "The Anchor Yale Bible Commentaries"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Amazon.com", + "workcode": "561027", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.57 inches", + "thickness": "0.91 inches", + "length": "6.37 inches", + "dimensions": "9.57 x 6.37 x 0.91 inches", + "weight": "1.29 pounds", + "pages": "268 " +}, +"268089985": { + "books_id": "268089985", + "title": "Encounter with emancipation : the German Jews in the United States, 1830-1914", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Naomi W.", + "authors": [{ + "lf": "Cohen, Naomi W.", + "fl": "Naomi W. Cohen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602367", + "isbn": { + "0": "0827602367", + "2": "9780827602366" + }, + "publication": "Philadelphia, Pa. : Jewish Publication Society, 1984.", + "date": "1984", + "summary": "Encounter with emancipation : the German Jews in the United States, 1830-1914 by Naomi W. Cohen (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973/.04924", + "973.04924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5C618 1984" + }, + "subject": [["Jews, German United States History"], + ["Judaism United States History"], + ["United States Ethnic Relations"], + ["United States Ethnic relations"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "83026781", + "workcode": "928992", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiv, 407 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xiv; 407 " +}, +"268090030": { + "books_id": "268090030", + "title": "Steeled by adversity : essays and addresses on American Jewish life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo W.", + "authors": [{ + "lf": "Baron, Salo W.", + "fl": "Salo W. Baron" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish Publication Society of America, 1971.", + "date": "1971", + "summary": "Steeled by adversity : essays and addresses on American Jewish life by Salo W. Baron (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["917.3/06/924", + "917.3"], + "wording": ["Geography & travel", + "Geography of and travel in North America", + "History & geography", + "United States"] + }, + "lcc": { + "code": "E184.J5" + }, + "subject": [["Halukkah"], + ["Jews United States History"]], + "workcode": "7733617", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268090035": { + "books_id": "268090035", + "title": "The ambivalent American Jew : politics, religion and family in American Jewish life", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Liebman, Charles S.", + "authors": [{ + "lf": "Liebman, Charles S.", + "fl": "Charles S. Liebman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600003", + "isbn": { + "0": "0827600003", + "2": "9780827600003" + }, + "publication": "Philadelphia : Jewish Publication Society of America, 1973", + "date": "1973", + "summary": "The ambivalent American Jew : politics, religion and family in American Jewish life by Charles S. Liebman (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["917.3"], + "wording": ["Geography & travel", + "Geography of and travel in North America", + "History & geography", + "United States"] + }, + "lcc": { + "code": "DS135.U5" + }, + "subject": [["Jews United States Politics and government"], + ["Judaism United States"]], + "source": "Israel Union List", + "lccn": "72087910", + "workcode": "5436026", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 215 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xii; 215 " +}, +"268090070": { + "books_id": "268090070", + "title": "1,001 questions and answers on Pesach", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Jeffrey M.", + "authors": [{ + "lf": "Cohen, Jeffrey M.", + "fl": "Jeffrey M. Cohen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568215231", + "isbn": { + "0": "1568215231", + "2": "9781568215235" + }, + "publication": "Northvale, N.J. : Jason Aronson, c1996.", + "date": "1996", + "summary": "1,001 questions and answers on Pesach by Jeffrey M. Cohen (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4/37", + "296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.P35C64 1996" + }, + "subject": [["Passover Customs and practices Miscellanea"]], + "source": "Israel Union List", + "lccn": "95022903", + "workcode": "5009944", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 363 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xv; 363 " +}, +"268090102": { + "books_id": "268090102", + "title": "Modern Jewish preaching Based upon the Alumni lectures given at Hebrew union college, March, 1941", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freeshof, Solomon Bennett", + "authors": [{ + "lf": "Freeshof, Solomon Bennett", + "fl": "Solomon Bennett Freeshof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Bloch publishing company, 1941.", + "date": "1941", + "summary": "Modern Jewish preaching Based upon the Alumni lectures given at Hebrew union college, March, 1941 by Solomon Bennett Freeshof (1941)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM730.F7" + }, + "source": "Library of Congress (Washington, DC)", + "lccn": "42000596", + "workcode": "15789191", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "171 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "171 " +}, +"268090133": { + "books_id": "268090133", + "title": "The forest, my friend", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosen, Donia", + "authors": [{ + "lf": "Rosen, Donia", + "fl": "Donia Rosen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Bergen Belsen Memorial Press of the World Federation of Bergen-Belsen Associations [1971]", + "date": "1971", + "summary": "The forest, my friend by Donia Rosen (1971)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["940.531/61", + "940.531"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4R657" + }, + "subject": [["Holocaust, Jewish (1939-1945) Personal Narratives"], + ["Holocaust, Jewish (1939-1945) Personal narratives"], + ["Rosen, Donia"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "74152374", + "workcode": "25771875", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "117 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "117 " +}, +"268090144": { + "books_id": "268090144", + "title": "Arabesques : a novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shammas, Anton", + "authors": [{ + "lf": "Shammas, Anton", + "fl": "Anton Shammas" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520228324", + "isbn": { + "0": "0520228324", + "2": "9780520228320" + }, + "publication": "Berkeley : University of California Press, 2001, c1988.", + "date": "1988", + "summary": "Arabesques : a novel by Anton Shammas (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["C2 SHA a"] + }, + "lcc": { + "code": "PJ5054.S414 A8913" + }, + "subject": [["Domestic fiction"], + ["Family", + "Palestine", + "Fiction"]], + "awards": ["The New York Times Best Books of the Year"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "Israel Union List", + "workcode": "50785", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "263 p.; 21 cm", + "height": "21 cm", + "thickness": "0.47 inches", + "length": "5.2 inches", + "dimensions": "21 x 5.2 x 0.47 cm", + "weight": "0.71 pounds", + "pages": "263 " +}, +"268090147": { + "books_id": "268090147", + "title": "The Jews (European Perspectives: A Series in Social Thought and Cultural Criticism)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Vidal-Naquet, Pierre", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vidal-Naquet, Pierre", + "fl": "Pierre Vidal-Naquet", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231102089", + "isbn": { + "0": "0231102089", + "2": "9780231102087" + }, + "asin": "0231102089", + "ean": ["0231102089"], + "publication": "Columbia Univ Pr (1996), 368 pages", + "date": "1996", + "summary": "The Jews (European Perspectives: A Series in Social Thought and Cultural Criticism) by Pierre Vidal-Naquet (1996)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["944.004924"], + "wording": ["France", + "France and Monaco", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DS102.5 .V5313" + }, + "subject": [["France", + "Ethnic relations"], + ["Holocaust, Jewish (1939-1945)", + "Historiography"], + ["Jewish-Arab relations"], + ["Jews", + "France", + "History"], + ["Jews", + "History", + "168 B.C.-135 A.D"]], + "source": "Amazon.com", + "workcode": "378469", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268090148": { + "books_id": "268090148", + "title": "The Jews : their history, culture, and religion", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Finkelstein, Louis", + "authors": [{ + "lf": "Finkelstein, Louis", + "fl": "Louis Finkelstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Harper, [1960]", + "date": "1960", + "summary": "The Jews : their history, culture, and religion by Louis Finkelstein (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS102.4" + }, + "subject": [["Civilization Jewish Influences"], + ["Civilization Jewish influences"], + ["Jewish literature History and criticism"], + ["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Judaism History"], + ["Judaism history"]], + "source": "Toronto Public Library (Canada)", + "lccn": "60007383", + "workcode": "1192061", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "2", + "physical_description": "24 cm", + "height": "24 cm", + "dimensions": "24 cm" +}, +"268090152": { + "books_id": "268090152", + "title": "Power struggle", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rubenstein, Richard L.", + "authors": [{ + "lf": "Rubenstein, Richard L.", + "fl": "Richard L. Rubenstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684137577", + "isbn": { + "0": "0684137577", + "2": "9780684137575" + }, + "publication": "New York, Scribner [1974]", + "date": "1974", + "summary": "Power struggle by Richard L. Rubenstein (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3/092/4B", + "296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.R83A36" + }, + "subject": [["Jews United States Biography"], + ["Jews United States biography"], + ["Rubenstein, Richard L"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "73001354", + "workcode": "5632824", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "volumes": "1", + "physical_description": "x, 193 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "x; 193 " +}, +"268090188": { + "books_id": "268090188", + "title": "As Much as We Could Do: The Contribution made by the Hebrew University of Jerusalem and Jewish Doctors and Scientists from Palestine during and after World War II", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ashbel, Rivka", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ashbel, Rivka", + "fl": "Rivka Ashbel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652237302", + "isbn": { + "0": "9652237302", + "2": "9789652237309" + }, + "asin": "9652237302", + "ean": ["9652237302"], + "publication": "The Hebrew University Magnes Press (1989), Edition: F First Edition, 304 pages", + "date": "1989", + "summary": "As Much as We Could Do: The Contribution made by the Hebrew University of Jerusalem and Jewish Doctors and Scientists from Palestine during and after World War II by Rivka Ashbel (1989)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "LG341.H3" + }, + "source": "amazon.com", + "workcode": "8641783", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268090207": { + "books_id": "268090207", + "title": "Saadia Gaon, his life and works", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Malter, Henry", + "authors": [{ + "lf": "Malter, Henry", + "fl": "Henry Malter" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, The Jewish publication society of America, 1942.", + "date": "1942", + "summary": "Saadia Gaon, his life and works by Henry Malter (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S2 M3" + }, + "subject": [["Sa adia ben Joseph, 882-942"]], + "source": "Brandeis University (Waltham, MA)", + "workcode": "2604575", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "446 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "446 " +}, +"268090244": { + "books_id": "268090244", + "title": "Anti-Semite and Jew", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sartre, Jean Paul", + "authors": [{ + "lf": "Sartre, Jean Paul", + "fl": "Jean Paul Sartre" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805201025", + "isbn": { + "0": "0805201025", + "2": "9780805201024" + }, + "publication": "New York : Schocken, 1965", + "date": "1965", + "summary": "Anti-Semite and Jew by Jean Paul Sartre (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["A204 SAR a"] + }, + "lcc": { + "code": "DS145 .S2713" + }, + "subject": [["Antisemitism"], + ["antisemitism"]], + "originaltitle": "R\u00e9flexions sur la question juive", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "Israel Union List", + "workcode": "168489", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "153 p.; 21 cm", + "height": "21 cm", + "thickness": "0.5 inches", + "length": "4.3 inches", + "dimensions": "21 x 4.3 x 0.5 cm", + "weight": "0.3 pounds", + "pages": "153 " +}, +"268090245": { + "books_id": "268090245", + "title": "The small sanctuary : Judaism in the prayerbook", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Freehof, Solomon Bennett", + "authors": [{ + "lf": "Freehof, Solomon Bennett", + "fl": "Solomon Bennett Freehof" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cincinnati : The Riverdale Press, 1942.", + "date": "1942", + "summary": "The small sanctuary : Judaism in the prayerbook by Solomon Bennett Freehof (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "296.302 F853" + }, + "subject": [["Prayer Judaism"]], + "source": "Israel Union List", + "workcode": "2404312", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 302 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xv; 302 " +}, +"268090248": { + "books_id": "268090248", + "title": "The Challenge of Wealth: A Jewish Perspective on Earning and Spending Money", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Tamari, Meir", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Tamari, Meir", + "fl": "Meir Tamari", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568212801", + "isbn": { + "0": "1568212801", + "2": "9781568212807" + }, + "asin": "1568212801", + "ean": ["1568212801"], + "publication": "Jason Aronson, Inc. (1995), Edition: 1St Edition, 286 pages", + "date": "1995", + "summary": "The Challenge of Wealth: A Jewish Perspective on Earning and Spending Money by Meir Tamari (1995)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.38568"], + "wording": ["Jewish philosophy", + "Judaism", + "Moral and Ethical Teachings", + "Other religions", + "Personal and Social Morality", + "Religion"] + }, + "lcc": { + "code": "BM509.E27 T36" + }, + "source": "amazon.com", + "workcode": "1634333", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268090280": { + "books_id": "268090280", + "title": "Stormers of heaven,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Freehof, Solomon B.", + "fl": "Solomon B. Freehof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00085PJVC", + "publication": "Harper & Brothers (1931)", + "date": "1931", + "summary": "Stormers of heaven, by Solomon B. Freehof (1931)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591465", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268090289": { + "books_id": "268090289", + "title": "The history of the Jewish people", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shulvass, Moses A.", + "authors": [{ + "lf": "Shulvass, Moses A.", + "fl": "Moses A. Shulvass" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0895266520", + "isbn": { + "0": "0895266520", + "2": "9780895266521" + }, + "publication": "Chicago : Regnery Gateway, c1982-", + "date": "1982", + "summary": "The history of the Jewish people by Moses A. Shulvass (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909/.04924", + "909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS117.S53 1982" + }, + "subject": [["Jews HIstory"], + ["Jews History"], + ["Jews history"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "81085564", + "workcode": "1142142", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "24 cm", + "height": "24 cm", + "dimensions": "24 cm" +}, +"268090374": { + "books_id": "268090374", + "title": "The Jews of Poland : a social and economic history of the Jewish community in Poland from 1100 to 1800", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Weinryb, Bernard D.", + "authors": [{ + "lf": "Weinryb, Bernard D.", + "fl": "Bernard D. Weinryb" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760016X", + "isbn": { + "0": "082760016X", + "2": "9780827600164" + }, + "publication": "Philadelphia : Jewish Publication Society of America, c1972", + "date": "1972", + "summary": "The Jews of Poland : a social and economic history of the Jewish community in Poland from 1100 to 1800 by Bernard D. Weinryb (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["D3(438) WEI j", + "438"], + "wording": ["German & related languages", + "Language", + "Standard German usage (Prescriptive linguistics)"] + }, + "lcc": { + "code": "DS135.P6 W38" + }, + "subject": [["Jews Poland History"]], + "source": "Bar-Ilan University (Ramat-Gan, Israel)", + "workcode": "18975703", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 424 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xvi; 424 " +}, +"268090376": { + "books_id": "268090376", + "title": "The Jews of Moslem Spain (volume 3 only)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ashtor, Eliyahu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ashtor, Eliyahu", + "fl": "Eliyahu Ashtor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602375", + "isbn": { + "0": "0827602375", + "2": "9780827602373" + }, + "asin": "0827602375", + "ean": ["0827602375"], + "publication": "Jewish Pubn Society (1984), Edition: First Edition", + "date": "1984", + "summary": "The Jews of Moslem Spain (volume 3 only) by Eliyahu Ashtor (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["946.004924"], + "wording": ["History & geography", + "History of Europe", + "Spain", + "Spain - Ethnic groups", + "Spain, Andorra, Gibraltar, Portugal"] + }, + "lcc": { + "code": "DS135.S7 A8313" + }, + "source": "amazon.com books", + "workcode": "7751593", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1 inches", + "weight": "1.05 pounds" +}, +"268090378": { + "books_id": "268090378", + "title": "Aristotle for Everybody", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Adler, Mortimer J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Adler, Mortimer J.", + "fl": "Mortimer J. Adler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0684838230", + "isbn": { + "0": "0684838230", + "2": "9780684838236" + }, + "asin": "0684838230", + "ean": ["0684838230"], + "publication": "Touchstone (1997), Edition: Reprint, 224 pages", + "date": "1997", + "summary": "Aristotle for Everybody by Mortimer J. Adler (1997)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["185"], + "wording": ["Ancient, medieval & eastern philosophy", + "Aristotelian philosophy", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B481.A3" + }, + "subject": [["Aristotle"]], + "source": "Amazon.com", + "workcode": "186616", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.21 inches", + "thickness": "0.65 inches", + "length": "5.54 inches", + "dimensions": "8.21 x 5.54 x 0.65 inches", + "weight": "0.47 pounds", + "pages": "288 " +}, +"268090410": { + "books_id": "268090410", + "title": "The Jews of Moslem Spain, Vol. 2", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ashtor, Eliyahu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ashtor, Eliyahu", + "fl": "Eliyahu Ashtor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760100X", + "isbn": { + "0": "082760100X", + "2": "9780827601000" + }, + "asin": "082760100X", + "ean": ["082760100X"], + "publication": "JPS Pub. (1979), Edition: First Edition", + "date": "1979", + "summary": "The Jews of Moslem Spain, Vol. 2 by Eliyahu Ashtor (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["946.004924"], + "wording": ["History & geography", + "History of Europe", + "Spain", + "Spain - Ethnic groups", + "Spain, Andorra, Gibraltar, Portugal"] + }, + "lcc": { + "code": "DS135.S7 A813" + }, + "source": "amazon.com books", + "workcode": "15244957", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.25 pounds" +},"268090513": { + "books_id": "268090513", + "title": "The Burnt Book", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ouaknin, Marc-Alain", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ouaknin, Marc-Alain", + "fl": "Marc-Alain Ouaknin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691059209", + "isbn": { + "0": "0691059209", + "2": "9780691059204" + }, + "asin": "0691059209", + "ean": ["0691059209"], + "publication": "Princeton University Press (1998), Edition: Reprint, 272 pages", + "date": "1998", + "summary": "The Burnt Book by Marc-Alain Ouaknin (1998)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM504 .O92" + }, + "source": "Amazon.com", + "workcode": "511733", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268090514": { + "books_id": "268090514", + "title": "The Jews of Moslem Spain, Volume 1 (Volume 1)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ashtor, Eliyahu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ashtor, Eliyahu", + "fl": "Eliyahu Ashtor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827604270", + "isbn": { + "0": "0827604270", + "2": "9780827604278" + }, + "asin": "0827604270", + "ean": ["0827604270"], + "publication": "JEWISH PUBLICATON SOCIETY (1993), 470 pages", + "date": "1993", + "summary": "The Jews of Moslem Spain, Volume 1 (Volume 1) by Eliyahu Ashtor (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["946.004924"], + "wording": ["History & geography", + "History of Europe", + "Spain", + "Spain - Ethnic groups", + "Spain, Andorra, Gibraltar, Portugal"] + }, + "lcc": { + "code": "DS135.S7 A8313" + }, + "source": "amazon.com books", + "workcode": "1353434", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "470 p.; 8 inches", + "height": "8 inches", + "thickness": "1.5 inches", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 1.5 inches", + "weight": "1.36 pounds", + "pages": "470 " +}, +"268090587": { + "books_id": "268090587", + "title": "The Jews in their land in the Talmudic age, 70-640 C.E.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Alon, Gedalia", + "authors": [{ + "lf": "Alon, Gedalia", + "fl": "Gedalia Alon" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674474953", + "isbn": { + "0": "0674474953", + "2": "9780674474956" + }, + "publication": "Jerusalem : Magnes Press, the Hebrew University, 1980-1984.", + "date": "1980", + "summary": "The Jews in their land in the Talmudic age, 70-640 C.E. by Gedalia Alon (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["D2 ALO j"] + }, + "lcc": { + "code": "DS123 .A713" + }, + "subject": [["Israel History 70-638"], + ["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Jews in Israel History"]], + "source": "Israel Union List", + "workcode": "1113463", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "2", + "physical_description": "801 p.; 24 cm", + "height": "24 cm", + "thickness": "1.32 inches", + "length": "5.7 inches", + "dimensions": "24 x 5.7 x 1.32 cm", + "weight": "1.73 pounds", + "pages": "801 " +}, +"268090643": { + "books_id": "268090643", + "title": "The Pharisees. Third edition, revised. Second impression", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Finkelstein, Louis", + "authors": [{ + "lf": "Finkelstein, Louis", + "fl": "Louis Finkelstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, 1966.", + "date": "1966", + "summary": "The Pharisees. Third edition, revised. Second impression by Louis Finkelstein (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "workcode": "32591544", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268090692": { + "books_id": "268090692", + "title": "The Jews in the world of the Renaissance", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shulvass, Moses A.", + "authors": [{ + "lf": "Shulvass, Moses A.", + "fl": "Moses A. Shulvass" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9004036466", + "isbn": { + "0": "9004036466", + "2": "9789004036468" + }, + "publication": "Leiden, Brill, 1973.", + "date": "1973", + "summary": "The Jews in the world of the Renaissance by Moses A. Shulvass (1973)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["914.5/06/924", + "914.5"], + "wording": ["Geography & travel", + "Geography of and travel in Europe", + "History & geography", + "Italy, San Marino, Vatican City, Malta"] + }, + "lcc": { + "code": "DS135.I8S5513" + }, + "subject": [["Jews Italy"], + ["Renaissance Italy"], + ["renaissance Italy"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "72097357", + "workcode": "1361660", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 367 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xv; 367 " +}, +"268090899": { + "books_id": "268090899", + "title": "Short Friday and other stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374504407", + "isbn": { + "0": "0374504407", + "2": "9780374504403" + }, + "summary": "Short Friday and other stories by Isaac Bashevis Singer", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813"], + "wording": ["American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ3.S61657 S" + }, + "subject": { + "0": ["Jewish fiction"], + "2": ["Jews", + "Fiction"], + "4": ["Singer, Isaac Bashevis, 1904-1991", + "Translations into English"] + }, + "awards": ["National Book Award"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "Avi Chai Foundation - Hebrew Schools Union Catalog Initiative (New York, NY)", + "workcode": "444515", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "256 p.; 8.54 inches", + "height": "8.54 inches", + "thickness": "0.66 inches", + "length": "5.54 inches", + "dimensions": "8.54 x 5.54 x 0.66 inches", + "weight": "0.89 pounds", + "pages": "256 " +}, +"268090915": { + "books_id": "268090915", + "title": "Organic thinking : a study in rabbinic thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kadushin, Max", + "authors": [{ + "lf": "Kadushin, Max", + "fl": "Max Kadushin" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819700185", + "isbn": { + "0": "0819700185", + "2": "9780819700186" + }, + "publication": "New York : Bloch, [1938]", + "date": "1938", + "summary": "Organic thinking : a study in rabbinic thought by Max Kadushin (1938)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["210"], + "wording": ["Philosophy & theory of religion", + "Philosophy and theory of religion", + "Religion"] + }, + "lcc": { + "code": "BM600.K3" + }, + "subject": [["JUDAISM"], + ["Judaism"], + ["Thought and Thinking"], + ["Thought and thinking"], + ["judaism"], + ["thought and thinking"]], + "source": "Harvard OpenMetadata", + "workcode": "11262705", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 367 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xvi; 367 " +}, +"268090918": { + "books_id": "268090918", + "title": "The legacy of Maimonides", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bokser, Ben Zion", + "authors": [{ + "lf": "Bokser, Ben Zion", + "fl": "Ben Zion Bokser" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Hebrew Pub. Co. [1962]", + "date": "1962", + "summary": "The legacy of Maimonides by Ben Zion Bokser (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B759.M34B6 1962" + }, + "subject": [["Maimonides, Moses, 1135-1204"]], + "source": "George Fox University and Seminary (Newberg, OR)", + "lccn": "62037013", + "workcode": "7827543", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "146 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "146 " +}, +"268090960": { + "books_id": "268090960", + "title": "History of the Hebrew language", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Saenz-Badillos, Angel", + "secondaryauthor": "Elwolde, John", + "authors": [{ + "lf": "Saenz-Badillos, Angel", + "fl": "Angel Saenz-Badillos" + }, + { + "lf": "Elwolde, John", + "fl": "John Elwolde" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0521556341", + "isbn": { + "0": "0521556341", + "2": "9780521556347" + }, + "publication": "Cambridge University Press, 1995.", + "date": "1995", + "summary": "History of the Hebrew language by Angel Saenz-Badillos (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Spanish"], + "originallanguage_codeA": ["eng", + "spa"], + "ddc": { + "code": ["492.409"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "History, geographic treatment, biography of Hebrew", + "Language", + "Other languages", + "modified standard subdivisions of Hebrew"] + }, + "lcc": { + "code": "PJ4545 .S2313" + }, + "subject": [["Hebrew language", + "History"]], + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "workcode": "240910", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "384 p.; 9.06 inches", + "height": "9.06 inches", + "thickness": "1.18 inches", + "length": "6.14 inches", + "dimensions": "9.06 x 6.14 x 1.18 inches", + "weight": "1.41 pounds", + "pages": "384 " +}, +"268090998": { + "books_id": "268090998", + "title": "Guard Your Tongue : a practical guide to the laws of loshon hora based on Chofetz Chayim", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pliskin, Zelig", + "authors": [{ + "lf": "Pliskin, Zelig", + "fl": "Zelig Pliskin" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[Brooklyn, N.Y. : S. Weissman, 1977, c1975].", + "date": "1975", + "summary": "Guard Your Tongue : a practical guide to the laws of loshon hora based on Chofetz Chayim by Zelig Pliskin (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1535.G6 P55" + }, + "subject": [["Ethics, Jewish Musar Movement"], + ["Gossip Jewish law"], + ["Slander"]], + "source": "Israel Union List", + "workcode": "361906", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvi, 237 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xvi; 237 " +}, +"268091027": { + "books_id": "268091027", + "title": "The Jewish prophets", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Comins, Harry Leon", + "authors": [{ + "lf": "Comins, Harry Leon", + "fl": "Harry Leon Comins" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Cincinnati, Dept. of Synagogue & School Extension of the Union of American Hebrew Congregations, 1936.", + "date": "1936", + "summary": "The Jewish prophets by Harry Leon Comins (1936)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["224"], + "wording": ["Prophetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1505.C575" + }, + "subject": [["PROPHETS"], + ["Prophets"], + ["prophets"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "36022372", + "workcode": "2956680", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 287 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "xii; 287 " +}, +"268091049": { + "books_id": "268091049", + "title": "Violence and defense in the Jewish experience : papers prepared for a seminar on violence and defense in Jewish history and contemporary life, Tel Aviv Univ., August 18 - Sept. 4, 1974", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo W.", + "authors": [{ + "lf": "Baron, Salo W.", + "fl": "Salo W. Baron" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600925", + "isbn": { + "0": "0827600925", + "2": "9780827600928" + }, + "publication": "Philadelphia : Jewish Publ. Soc. of America, 1977", + "date": "1977", + "summary": "Violence and defense in the Jewish experience : papers prepared for a seminar on violence and defense in Jewish history and contemporary life, Tel Aviv Univ., August 18 - Sept. 4, 1974 by Salo W. Baron (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.8"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "Special Topics", + "The Bible"] + }, + "lcc": { + "code": "BS1199.V56 V56" + }, + "subject": { + "0": ["Antisemitism", + "Congresses"], + "1": ["Antisemitism", + "History", + "Congresses"], + "2": ["Violence in rabbinical literature", + "Congresses"], + "4": ["Violence in the Bible", + "Congresses"] + }, + "source": "Konstanz University", + "workcode": "1760627", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "XII; 362 " +}, +"268091073": { + "books_id": "268091073", + "title": "A rabbi takes stock", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Goldman, Solomon", + "authors": [{ + "lf": "Goldman, Solomon", + "fl": "Solomon Goldman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, London, Harper & Brothers, 1931.", + "date": "1931", + "summary": "A rabbi takes stock by Solomon Goldman (1931)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS119.G6" + }, + "subject": [["JUDAISM"], + ["Jews Political and social conditions"], + ["Jews political and social conditions"], + ["Judaism"], + ["judaism"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "31034712", + "workcode": "5161316", + "entrydate": "2024-07-21", + "copies": "1", + "volumes": "1", + "physical_description": "viii, 247 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "viii; 247 " +}, +"268091095": { + "books_id": "268091095", + "title": "The History of the Jewish People, Vol. 2: The Early Middle Ages", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shulvass, Moses A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shulvass, Moses A.", + "fl": "Moses A. Shulvass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0895266571", + "isbn": { + "0": "0895266571", + "2": "9780895266576" + }, + "asin": "0895266571", + "ean": ["0895266571"], + "publication": "Gateway Books (1983), Edition: First Edition", + "date": "1983", + "summary": "The History of the Jewish People, Vol. 2: The Early Middle Ages by Moses A. Shulvass (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS117.S53" + }, + "source": "amazon.com books", + "workcode": "6353045", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268091097": { + "books_id": "268091097", + "title": "The Rabbinic Mind", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kadushin, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kadushin, Max", + "fl": "Max Kadushin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081970007X", + "isbn": { + "0": "081970007X", + "2": "9780819700070" + }, + "asin": "081970007X", + "ean": ["081970007X"], + "publication": "Bloch Pub Co (1972), Edition: 1 ED, 414 pages", + "date": "1972", + "summary": "The Rabbinic Mind by Max Kadushin (1972)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496 .K3" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "source": "Amazon.com", + "workcode": "1172186", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268091098": { + "books_id": "268091098", + "title": "Hebrew : the eternal language", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chomsky, William", + "authors": [{ + "lf": "Chomsky, William", + "fl": "William Chomsky" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : The Jewish publication society of America, 1964, c1957.", + "date": "1957", + "summary": "Hebrew : the eternal language by William Chomsky (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.4"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ 4545 C44" + }, + "subject": [["Hebrew Language Grammar"], + ["Hebrew language Grammar"]], + "source": "Israel Union List", + "workcode": "560571", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xii; 321 " +}, +"268091106": { + "books_id": "268091106", + "title": "The Future of the Jewish community in America : essays prepared for a Task Force on the Future of the Jewish Community in America of the American Jewish Committee", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ackerman, Walter I.", + "secondaryauthor": "Sidorsky, David", + "authors": [{ + "lf": "Ackerman, Walter I.", + "fl": "Walter I. Ackerman" + }, + { + "lf": "Sidorsky, David", + "fl": "David Sidorsky" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465025943", + "isbn": { + "0": "0465025943", + "2": "9780465025947" + }, + "publication": "New York : Basic Books, c1973", + "date": "1973", + "summary": "The Future of the Jewish community in America : essays prepared for a Task Force on the Future of the Jewish Community in America of the American Jewish Committee by Walter I. Ackerman (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["917.3"], + "wording": ["Geography & travel", + "Geography of and travel in North America", + "History & geography", + "United States"] + }, + "lcc": { + "code": "933.5(73)" + }, + "subject": [["Jews United States History"], + ["Judaism United States"]], + "source": "Israel Union List", + "workcode": "179240", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xxviii; 324 " +}, +"268091120": { + "books_id": "268091120", + "title": "Solomon Goldman: A Rabbi's Rabbi", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weinstein, Jacob Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weinstein, Jacob Joseph", + "fl": "Jacob Joseph Weinstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870681966", + "isbn": { + "0": "0870681966", + "2": "9780870681967" + }, + "asin": "0870681966", + "ean": ["0870681966"], + "publication": "Ktav Pub. House (1973), 295 pages", + "date": "1973", + "summary": "Solomon Goldman: A Rabbi's Rabbi by Jacob Joseph Weinstein (1973)", + "ddc": { + "code": ["922.96"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "BM755.G58 W45" + }, + "source": "amazon.com", + "workcode": "4062805", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.1 inches", + "thickness": "1.1 inches", + "length": "6.2 inches", + "dimensions": "9.1 x 6.2 x 1.1 inches", + "weight": "1.4 pounds", + "pages": "295 " +}, +"268091136": { + "books_id": "268091136", + "title": "As the rabbis taught : studies in the aggados of the Talmud : Tractate Megillah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Landesman, Dovid", + "authors": [{ + "lf": "Landesman, Dovid", + "fl": "Dovid Landesman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568219954", + "isbn": { + "0": "1568219954", + "2": "9781568219950" + }, + "publication": "Northvale, N.J. : Jason Aronson, c1996.", + "date": "1996", + "summary": "As the rabbis taught : studies in the aggados of the Talmud : Tractate Megillah by Dovid Landesman (1996)", + "language": ["English", + "Aramaic"], + "language_codeA": ["eng", + "arc"], + "originallanguage": ["Aramaic"], + "originallanguage_codeA": ["eng", + "arc"], + "ddc": { + "code": ["296.1/2507", + "296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM516.E433A8 1996" + }, + "subject": [["Aggada Commentaries"], + ["Aggada Translations into English"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "96001864", + "workcode": "2773045", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "320 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "320 " +}, +"268091193": { + "books_id": "268091193", + "title": "The architecture of the European synagogue", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wischnitzer, Rachel Bernstein", + "authors": [{ + "lf": "Wischnitzer, Rachel Bernstein", + "fl": "Rachel Bernstein Wischnitzer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, Jewish Publication Society of America, 1964.", + "date": "1964", + "summary": "The architecture of the European synagogue by Rachel Bernstein Wischnitzer (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["726.3"], + "wording": ["Architecture", + "Arts & recreation", + "Buildings for religious and related purposes", + "Synagogues and Jewish temples"] + }, + "lcc": { + "code": "NA4690.W49" + }, + "subject": [["Synagogue architecture Europe"], + ["Synagogues Europe"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "64016754", + "workcode": "3410894", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1" +}, +"268091194": { + "books_id": "268091194", + "title": "Worship and Ethics: A Study in Rabbinic Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kadushin, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kadushin, Max", + "fl": "Max Kadushin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819700118", + "isbn": { + "0": "0819700118", + "2": "9780819700117" + }, + "asin": "0819700118", + "ean": ["0819700118"], + "publication": "Bloch Pub Co (1996), Edition: rev, 329 pages", + "date": "1996", + "summary": "Worship and Ethics: A Study in Rabbinic Judaism by Max Kadushin (1996)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM656" + }, + "source": "amazon.com", + "workcode": "1612377", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268091244": { + "books_id": "268091244", + "title": "The Jewish-Christian Debate in the High Middle Ages: A Critical Edition of the Nizzahon Vetus (Judaica, Texts and Translations, No. 4) (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Berger, David", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Berger, David", + "fl": "David Berger", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827601042", + "isbn": { + "0": "0827601042", + "2": "9780827601048" + }, + "asin": "0827601042", + "ean": ["0827601042"], + "publication": "Jewish Publication Society (1979), Edition: 1st, 586 pages", + "date": "1979", + "summary": "The Jewish-Christian Debate in the High Middle Ages: A Critical Edition of the Nizzahon Vetus (Judaica, Texts and Translations, No. 4) (English and Hebrew Edition) by David Berger (1979)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["230"], + "wording": ["Christianity", + "Christianity", + "Religion"] + }, + "lcc": { + "code": "BM590 .S4313" + }, + "subject": [["Bible", + "Criticism, interpretation, etc.", + "Early works to 1800"], + ["Bible O.T.", + "Criticism, interpretation, etc"], + ["Bible. O.T.", + "Criticism, interpretation, etc"], + ["Christianity", + "Controversial literature", + "Early works to 1800"], + ["Judaism", + "Apologetic works", + "Early works to 1800"], + ["Judaism", + "History", + "Medieval and early modern period, 425-1789"]], + "series": ["Judaica, Texts and Translations"], + "awards": ["John Nicholas Brown Prize"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "Amazon.com", + "workcode": "1107263", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "1.2 inches", + "length": "6.6 inches", + "dimensions": "9.3 x 6.6 x 1.2 inches", + "weight": "2.2 pounds", + "pages": "586 " +}, +"268091281": { + "books_id": "268091281", + "title": "The Jewish mystical tradition", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bokser, Ben Zion", + "authors": [{ + "lf": "Bokser, Ben Zion", + "fl": "Ben Zion Bokser" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0829804358", + "isbn": { + "0": "0829804358", + "2": "9780829804355" + }, + "publication": "New York : Pilgrim Press, c1981.", + "date": "1981", + "summary": "The Jewish mystical tradition by Ben Zion Bokser (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7/1", + "296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723.J485" + }, + "subject": [["Cabala History Sources"], + ["Hasidism History Sources"], + ["Mysticism Judaism History Sources"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "80027627", + "workcode": "179250", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "277 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "277 " +}, +"268091302": { + "books_id": "268091302", + "title": "The history of the jewish people in the age of Jesus Christ : 175 B.C. - A.D. 135. Volume 3. Part 1", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sch rer, Emil", + "authors": [{ + "lf": "Sch rer, Emil", + "fl": "Emil Sch rer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0567022420", + "isbn": { + "0": "0567022420", + "2": "9780567022424" + }, + "publication": "Edinburgh : T. & T. Clark, 1995.", + "date": "1995", + "summary": "The history of the jewish people in the age of Jesus Christ : 175 B.C. - A.D. 135. Volume 3. Part 1 by Emil Sch rer (1995)", + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122 .S422" + }, + "subject": [["Jews", + "History", + "70-638"], + ["Jews", + "History", + "To 70 A.D"]], + "originaltitle": "Geschichte des judischen Volks im Zeitalter Jesu Christi", + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "SUDOC, Agence bibliographique de l'enseignement supérieur (Montpellier, OCC)", + "workcode": "2196886", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "704 p.; 23 cm", + "height": "23 cm", + "thickness": "2.2 inches", + "length": "5.83 inches", + "dimensions": "23 x 5.83 x 2.2 cm", + "weight": "1.98 pounds", + "pages": "704 " +}, +"268091338": { + "books_id": "268091338", + "title": "Letters to Paula", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0822911027", + "isbn": { + "0": "0822911027", + "2": "9780822911029" + }, + "asin": "0822911027", + "ean": ["0822911027"], + "publication": "University of Pittsburgh Press (1972), Edition: 1st, 259 pages", + "date": "1972", + "summary": "Letters to Paula by David Ben-Gurion (1972)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.B37 A433" + }, + "source": "amazon.com", + "workcode": "5685159", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268091376": { + "books_id": "268091376", + "title": "Between the Rhine and the Bosporus : studies and essays in European Jewish history", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shulvass, Moses A.", + "authors": [{ + "lf": "Shulvass, Moses A.", + "fl": "Moses A. Shulvass" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Chicago : College of Jewish Studies Press, 1964.", + "date": "1964", + "summary": "Between the Rhine and the Bosporus : studies and essays in European Jewish history by Moses A. Shulvass (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.25693094"], + "wording": ["Asian Emigration", + "Emigration and Refugees ", + "International migration and colonization", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DS135.E8S5" + }, + "subject": [["Jews Europe History"], + ["Jews Europe history"]], + "source": "Harvard OpenMetadata", + "lccn": "64020613", + "workcode": "4088942", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "viii, 210 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "viii; 210 " +}, +"268091385": { + "books_id": "268091385", + "title": "The commandments : Sefer Ha-Mitzvoth of Maimonides", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Maimonides, Moses", + "secondaryauthor": "Chavel, Charles Ber", + "authors": [{ + "lf": "Maimonides, Moses", + "fl": "Moses Maimonides" + }, + { + "lf": "Chavel, Charles Ber", + "fl": "Charles Ber Chavel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : The Soncino Press, 1967.", + "date": "1967", + "summary": "The commandments : Sefer Ha-Mitzvoth of Maimonides by Moses Maimonides (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM 520.8 M685 C5 1967" + }, + "subject": [["Commandments, Six hundred and thirteen"]], + "source": "Israel Union List", + "workcode": "4662836", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxxiv, 447 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xxxiv; 447 " +}, +"268091429": { + "books_id": "268091429", + "title": "Maimonides: Torah and Philosophic Quest", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hartman, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hartman, David", + "fl": "David Hartman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600836", + "isbn": { + "0": "0827600836", + "2": "9780827600836" + }, + "asin": "0827600836", + "ean": ["0827600836"], + "publication": "Jewish Publication Society (1976), Edition: First Edition, 331 pages", + "date": "1976", + "summary": "Maimonides: Torah and Philosophic Quest by David Hartman (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B759.M34 H36" + }, + "subject": [["Jewish law", + "Philosophy"], + ["Maimonides, Moses, 1135-1204"], + ["Philosophy, Jewish"], + ["Philosophy, Medieval"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "866523", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "331 p.", + "weight": "0.6 pounds", + "pages": "331 " +}, +"268091448": { + "books_id": "268091448", + "title": "Who's Who in the Talmud", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Frieman, Shulamis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Frieman, Shulamis", + "fl": "Shulamis Frieman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568211139", + "isbn": { + "0": "1568211139", + "2": "9781568211138" + }, + "asin": "1568211139", + "ean": ["1568211139"], + "publication": "Jason Aronson, Inc. (2000), 488 pages", + "date": "2000", + "summary": "Who's Who in the Talmud by Shulamis Frieman (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501 .F75" + }, + "subject": [["Amoraim", + "Dictionaries"], + ["Tannaim", + "Dictionaries"]], + "source": "amazon.com books", + "workcode": "2789212", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "488 p.; 9.16 inches", + "height": "9.16 inches", + "thickness": "1.38 inches", + "length": "6.66 inches", + "dimensions": "9.16 x 6.66 x 1.38 inches", + "weight": "1.79897205792 pounds", + "pages": "488 " +}, +"268091499": { + "books_id": "268091499", + "title": "Nahum Sokolow: Life and legend", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sokolow, Florian", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sokolow, Florian", + "fl": "Florian Sokolow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0900498617", + "isbn": { + "0": "0900498617", + "2": "9780900498619" + }, + "asin": "0900498617", + "ean": ["0900498617"], + "publication": "Jewish Chronicle Publications (1975), Edition: First Edition, 248 pages", + "date": "1975", + "summary": "Nahum Sokolow: Life and legend by Florian Sokolow (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.S6 S63" + }, + "source": "amazon.com books", + "workcode": "20121441", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "248 p.", + "weight": "1 pound", + "pages": "248 " +}, +"268091522": { + "books_id": "268091522", + "title": "Nachman Syrkin: Socialist Zionist", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Syrkin, Marie", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Syrkin, Marie", + "fl": "Marie Syrkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000L9OQ64", + "publication": "Sharon Books (1960)", + "date": "1960", + "summary": "Nachman Syrkin: Socialist Zionist by Marie Syrkin (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591682", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"268091531": { + "books_id": "268091531", + "title": "On the Bible: Eighteen Studies (Martin Buber Library)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "secondaryauthor": "Glatzer, On the Bible Nahum N.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }, + { + "lf": "Glatzer, On the Bible Nahum N.", + "fl": "On the Bible Nahum N. Glatzer", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0815628404", + "isbn": { + "0": "0815628404", + "2": "9780815628408" + }, + "asin": "0815628404", + "ean": ["0815628404"], + "publication": "Syracuse University Press (2000), 278 pages", + "date": "2000", + "summary": "On the Bible: Eighteen Studies (Martin Buber Library) by Martin Buber (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1192 .B8" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "source": "amazon.com books", + "workcode": "723752", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "278 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.67 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.67 inches", + "weight": "0.7495716908 pounds", + "pages": "278 " +}, +"268091545": { + "books_id": "268091545", + "title": "Land of the hart: Israelis, Arabs, the territories,: And a vision of the future", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eliav, Arie Lova", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eliav, Arie Lova", + "fl": "Arie Lova Eliav", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760047X", + "isbn": { + "0": "082760047X", + "2": "9780827600478" + }, + "asin": "082760047X", + "ean": ["082760047X"], + "publication": "The Jewish Publication Society of America (1974), Edition: First Edition, 381 pages", + "date": "1974", + "summary": "Land of the hart: Israelis, Arabs, the territories,: And a vision of the future by Arie Lova Eliav (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["320.9"], + "wording": ["Political science", + "Political science (Politics and government)", + "Political situation and conditions", + "Social sciences"] + }, + "lcc": { + "code": "DS126 .E41613" + }, + "source": "amazon.com books", + "workcode": "5889001", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "381 p.; 9.3 x 1.07 inches", + "height": "1.07 inches", + "thickness": "6.12 inches", + "length": "9.3 inches", + "dimensions": "1.07 x 9.3 x 6.12 inches", + "weight": "0.15 pounds", + "pages": "381 " +}, +"268091563": { + "books_id": "268091563", + "title": "The Mitzvot: The Commandments and Their Rationale", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Chill, Abraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chill, Abraham", + "fl": "Abraham Chill", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819703761", + "isbn": { + "0": "0819703761", + "2": "9780819703767" + }, + "asin": "0819703761", + "ean": ["0819703761"], + "publication": "Bloch Pub Co (1974), Edition: First Edition, First Printing, 508 pages", + "date": "1974", + "summary": "The Mitzvot: The Commandments and Their Rationale by Abraham Chill (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM520 .C48" + }, + "subject": [["Bible. O.T. Pentateuch", + "Commentaries"], + ["Commandments (Judaism)"]], + "source": "amazon.com books", + "workcode": "511776", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "508 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.5 inches", + "weight": "2 pounds", + "pages": "508 " +}, +"268091577": { + "books_id": "268091577", + "title": "Zionist Culture and West European Jewry before the First World War", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berkowitz, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berkowitz, Michael", + "fl": "Michael Berkowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0521420725", + "isbn": { + "0": "0521420725", + "2": "9780521420723" + }, + "asin": "0521420725", + "ean": ["0521420725"], + "publication": "Cambridge University Press (1993), Edition: First Edition, 274 pages", + "date": "1993", + "summary": "Zionist Culture and West European Jewry before the First World War by Michael Berkowitz (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.5"], + "wording": ["Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS149 .B395" + }, + "subject": [["Europe", + "Ethnic relations"], + ["Europe", + "History", + "1871-1918"], + ["Jews", + "Europe", + "Civilization"], + ["Jews", + "Europe", + "History"], + ["Zionism", + "Europe", + "History"]], + "source": "amazon.com books", + "workcode": "2660871", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "274 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "0.75 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 0.75 inches", + "weight": "1.2786811196 pounds", + "pages": "274 " +}, +"268091585": { + "books_id": "268091585", + "title": "Salo Wittmayer Baron: Architect of Jewish History (Modern Jewish Masters)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Liberles, Robert", + "primaryauthorrole": "Editor", + "secondaryauthor": "Lyman, Stanford M.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Liberles, Robert", + "fl": "Robert Liberles", + "role": "Editor" + }, + { + "lf": "Lyman, Stanford M.", + "fl": "Stanford M. Lyman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814750885", + "isbn": { + "0": "0814750885", + "2": "9780814750889" + }, + "asin": "0814750885", + "ean": ["0814750885"], + "publication": "NYU Press (1995), Edition: 1st US - 1st Printing, 425 pages", + "date": "1995", + "summary": "Salo Wittmayer Baron: Architect of Jewish History (Modern Jewish Masters) by Robert Liberles (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115.B37 L53" + }, + "source": "amazon.com books", + "workcode": "5436024", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "425 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1.25 inches", + "weight": "1.322773572 pounds", + "pages": "425 " +}, +"268091645": { + "books_id": "268091645", + "title": "The contemporary relevance of history : a study in approaches and methods", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baron, Salo W.", + "authors": [{ + "lf": "Baron, Salo W.", + "fl": "Salo W. Baron" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231063369", + "isbn": { + "0": "0231063369", + "2": "9780231063364" + }, + "publication": "New York : Columbia University Press, 1986.", + "date": "1986", + "summary": "The contemporary relevance of history : a study in approaches and methods by Salo W. Baron (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["901"], + "wording": ["History", + "History & geography", + "Philosophy and theory of history"] + }, + "lcc": { + "code": "D16.8.B3145 1986" + }, + "subject": [["HISTORIOGRAPHY"], + ["HISTORY METHODOLOGY"], + ["Historiography"], + ["History Methodology"], + ["History Philosophy"], + ["History methodology"], + ["History philosophy"], + ["historiography"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "86002644", + "workcode": "547516", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "viii, 158 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "viii; 158 " +}, +"268091646": { + "books_id": "268091646", + "title": "The return to the soil; a history of Jewish settlement in Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bein, Alex", + "authors": [{ + "lf": "Bein, Alex", + "fl": "Alex Bein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem, Youth and Herchalutz, Dept. of the Zionist Organisation, 1952.", + "date": "1952", + "summary": "The return to the soil; a history of Jewish settlement in Israel by Alex Bein (1952)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "HD1516.P18B523" + }, + "subject": [["Jews Colonization"], + ["Zionism History"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "53056438", + "workcode": "20121306", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "576 p.; 18 cm", + "height": "18 cm", + "dimensions": "18 cm", + "pages": "576 " +}, +"268091695": { + "books_id": "268091695", + "title": "The encyclopedia of the sayings of the Jewish people", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Nulman, Macy", + "authors": [{ + "lf": "Nulman, Macy", + "fl": "Macy Nulman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0765759802", + "isbn": { + "0": "0765759802", + "2": "9780765759801" + }, + "publication": "Northvale, N.J. : Jason Aronson, c1997.", + "date": "1997", + "summary": "The encyclopedia of the sayings of the Jewish people by Macy Nulman (1997)", + "language": ["English", + "Aramaic"], + "language_codeA": ["eng", + "arc"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "arc"], + "ddc": { + "code": ["398.9/089924", + "398.9"], + "wording": ["Customs, etiquette & folklore", + "Folklore", + "Proverbs", + "Social sciences"] + }, + "lcc": { + "code": "PN6414.E97 1997" + }, + "subject": [["Aphorisms and apothegms"], + ["Jewish parables"], + ["Judaism Quotations, Maxims, etc"], + ["Judaism Quotations, maxims, etc"], + ["Proverbs, Jewish"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "96051944", + "workcode": "8475414", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvii, 358 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xvii; 358 " +}, +"268091742": { + "books_id": "268091742", + "title": "A new Jewish theology in the making", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Borowitz, Eugene B.", + "authors": [{ + "lf": "Borowitz, Eugene B.", + "fl": "Eugene B. Borowitz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia, Westminster Press [1968]", + "date": "1968", + "summary": "A new Jewish theology in the making by Eugene B. Borowitz (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM195.B6" + }, + "subject": [["Judaism History of doctrines"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "68025395", + "workcode": "3189499", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "220 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "220 " +}, +"268091744": { + "books_id": "268091744", + "title": "New York Jews and the quest for community : the Kehillah experiment, 1908-1922", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goren, Arthur A.", + "authors": [{ + "lf": "Goren, Arthur A.", + "fl": "Arthur A. Goren" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231034229", + "isbn": { + "0": "0231034229", + "2": "9780231034227" + }, + "publication": "New York : Columbia University Press, 1970.", + "date": "1970", + "summary": "New York Jews and the quest for community : the Kehillah experiment, 1908-1922 by Arthur A. Goren (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.3/64/097471", + "301.3"], + "wording": ["Formerly: Ecology and community", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "F128.9.J5G63" + }, + "subject": [["Jewish community centers New York (State) New York"], + ["Jews New York (State) New York Politics and government"], + ["Jews Politics and Government"], + ["Jews Politics and government"], + ["Joden"], + ["Juifs New York (E\u0301tat) New York Politique et gouvernement"], + ["Juifs New York, N.Y"], + ["Lokale gemeenschappen"], + ["New York (N.Y.) Histoire"], + ["New York (N.Y.) History"], + ["New York (State)"]], + "source": "University of California, Berkeley (Berkeley, CA)", + "lccn": "76129961", + "workcode": "2414509", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "x, 361 p.; 24 cm", + "height": "24 cm", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "24 x 6.25 x 1.25 cm", + "weight": "1.6 pounds", + "pages": "x; 361 " +}, +"268091754": { + "books_id": "268091754", + "title": "A history of Jewish literature", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Waxman, Meyer", + "authors": [{ + "lf": "Waxman, Meyer", + "fl": "Meyer Waxman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Yoseloff, 1961.", + "date": "1961", + "summary": "A history of Jewish literature by Meyer Waxman (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["001.2"], + "wording": ["Computer science, information & general works", + "Computer science, knowledge & systems", + "Knowledge", + "Scholarship and learning"] + }, + "lcc": { + "code": "PJ5008.W323" + }, + "subject": [["Hebrew literature", + "History and criticism"], + ["Jewish literature", + "History and criticism"]], + "workcode": "3245181", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268091769": { + "books_id": "268091769", + "title": "Social and Religious History of the Jews, Volume 13: Social and Religious History of the Jews: Late Middle Ages and Era of European Expansion, ... Reformation, 2nd Revised and Enlarged Edition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baron, Salo Wittmayer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baron, Salo Wittmayer", + "fl": "Salo Wittmayer Baron", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0231088507", + "isbn": { + "0": "0231088507", + "2": "9780231088503" + }, + "asin": "0231088507", + "ean": ["0231088507"], + "publication": "Columbia University Press (1970), Edition: 2nd Revised & Enlarged, 463 pages", + "date": "1970", + "summary": "Social and Religious History of the Jews, Volume 13: Social and Religious History of the Jews: Late Middle Ages and Era of European Expansion, ... Reformation, 2nd Revised and Enlarged Edition by Salo Wittmayer Baron (1970)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112.B3152" + }, + "series": ["Social and Religious History of the Jews"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "Amazon.com", + "workcode": "2581835", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.29 inches", + "thickness": "1.35 inches", + "length": "6.26 inches", + "dimensions": "9.29 x 6.26 x 1.35 inches", + "weight": "1.6 pounds", + "pages": "463 " +}, +"268091777": { + "books_id": "268091777", + "title": "The road to modern Jewish politics : political tradition and political reconstruction in the Jewish community of tsarist Russia", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lederhendler, Eli", + "authors": [{ + "lf": "Lederhendler, Eli", + "fl": "Eli Lederhendler" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195058917", + "isbn": { + "0": "0195058917", + "2": "9780195058918" + }, + "publication": "New York : Oxford University Press, 1989.", + "date": "1989", + "summary": "The road to modern Jewish politics : political tradition and political reconstruction in the Jewish community of tsarist Russia by Eli Lederhendler (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947/.004924", + "947.004924"], + "wording": ["Ethnic minorities", + "History & geography", + "History of Europe", + "Jews", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.R9L33 1989" + }, + "subject": [["Europe, Eastern Ethnic relations"], + ["Haskalah Russia"], + ["Jews Europe, Eastern Politics and government"], + ["Jews Russia History"], + ["Russia Ethnic relations"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1599", + "3805"], + "source": "Library of Congress (Washington, DC)", + "lccn": "88023832 //", + "workcode": "4487453", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 240 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "ix; 240 " +}, +"268091839": { + "books_id": "268091839", + "title": "History remembered, recovered, invented", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lewis, Bernard", + "authors": [{ + "lf": "Lewis, Bernard", + "fl": "Bernard Lewis" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691035474", + "isbn": { + "0": "0691035474", + "2": "9780691035475" + }, + "publication": "Princeton : Princeton University Press, 1976, c1974.", + "date": "1974", + "summary": "History remembered, recovered, invented by Bernard Lewis (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["907.2"], + "wording": ["Education, research, related topics of history", + "History", + "History & geography", + "Research"] + }, + "lcc": { + "code": "D13" + }, + "subject": [["HISTORIOGRAPHY"], + ["Historiography"], + ["History Philosophy"], + ["History philosophy"], + ["Middle East Historiography"], + ["historiography"]], + "source": "Israel Union List", + "lccn": "74025607", + "workcode": "1525007", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "111 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "111 " +}, +"268091846": { + "books_id": "268091846", + "title": "Lives and voices : a collection of American Jewish memoirs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chyet, Stanley F.", + "authors": [{ + "lf": "Chyet, Stanley F.", + "fl": "Stanley F. Chyet" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish Publication Society of America, 1972", + "date": "1972", + "summary": "Lives and voices : a collection of American Jewish memoirs by Stanley F. Chyet (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.451"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.U53" + }, + "subject": [["Jews United States Biography Biography"]], + "source": "Israel Union List", + "lccn": "76169115", + "workcode": "1171306", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxi, 388 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xxi; 388 " +}, +"268091859": { + "books_id": "268091859", + "title": "How can a Jew speak of faith today?", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Borowitz, Eugene B.", + "authors": [{ + "lf": "Borowitz, Eugene B.", + "fl": "Eugene B. Borowitz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0664208479", + "isbn": { + "0": "0664208479", + "2": "9780664208479" + }, + "publication": "Philadelphia, Westminster Press [1969]", + "date": "1969", + "summary": "How can a Jew speak of faith today? by Eugene B. Borowitz (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296/.09/04", + "296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM601.B6" + }, + "subject": [["JUDAISM"], + ["Judaism"], + ["judaism"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "69010899", + "workcode": "4234274", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "221 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "221 " +}, +"268091929": { + "books_id": "268091929", + "title": "Perceptions of Jewish history", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Funkenstein, Amos", + "authors": [{ + "lf": "Funkenstein, Amos", + "fl": "Amos Funkenstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520077024", + "isbn": { + "0": "0520077024", + "2": "9780520077027" + }, + "publication": "Berkeley : University of California Press, 1993.", + "date": "1993", + "summary": "Perceptions of Jewish history by Amos Funkenstein (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["909/.04924", + "909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115.5.F95 1993" + }, + "subject": [["Jews Historiography"], + ["Jews History Philosophy"]], + "source": "Harvard OpenMetadata", + "lccn": "91041634", + "workcode": "378020", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 390 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xiii; 390 " +}, +"268091937": { + "books_id": "268091937", + "title": "Every man dies alone", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Fallada, Hans", + "authors": [{ + "lf": "Fallada, Hans", + "fl": "Hans Fallada" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781933633633", + "isbn": ["9781933633633", + "1933633638"], + "publication": "Brooklyn, N.Y. : Melville House Pub., c2009.", + "date": "2009", + "summary": "Every man dies alone by Hans Fallada (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["833/.912", + "833.912"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "PT2607.I6J413 2009" + }, + "subject": [["Anti-Nazi movement"], + ["Anti-Nazi movement Germany Fiction"], + ["GERMANY"], + ["Germany"], + ["Germany History 1933-1945 Fiction"], + ["Holocaust, Jewish (1939-1945) Germany Berlin Fiction"], + ["Nazis"], + ["Nazis Germany Berlin Fiction"], + ["germany"]], + "originaltitle": "Jeder stirbt f\u00fcr sich allein", + "awards": ["100 German must-reads by Deutsche Welle", + "30 Books for Americans\u2019 10 Most-Visited Countries", + "Audie Award", + "Globe and Mail Top 100 Book", + "Reading the world in 196 books", + "San Francisco Chronicle Best Book of the Year", + "Spear's Book Award", + "The New York Times Notable Books of the Year", + "Torchlight List", + "\u0421\u0442\u043e\u043b\u0438\u0446\u044b \u043c\u0438\u0440\u0430 \u043e\u0442 Officiel Voyage"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "Cornell University (Ithaca, NY)", + "lccn": "2008027489", + "workcode": "1453366", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "543 p.; 24 cm", + "height": "24 cm", + "thickness": "1.78 inches", + "length": "6.38 inches", + "dimensions": "24 x 6.38 x 1.78 cm", + "weight": "1.91 pounds", + "pages": "543 " +}, +"268091940": { + "books_id": "268091940", + "title": "The voice of Jacob : on the composition of Genesis", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Brisman, Leslie", + "authors": [{ + "lf": "Brisman, Leslie", + "fl": "Leslie Brisman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Bloomington : Indiana Univ. Pr., c1990", + "date": "1990", + "summary": "The voice of Jacob : on the composition of Genesis by Leslie Brisman (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["T115 BRI v"] + }, + "lcc": { + "code": "BS1235 .B75" + }, + "subject": [["BIBLE AS LITERATURE"], + ["Bible as Literature"], + ["Bible as literature"], + ["DOCUMENTARY HYPOTHESIS (PENTATEUCHAL CRITICISM)"], + ["Documentary hypothesis (Pentateuchal criticism)"]], + "awards": ["Conference on Christianity and Literature Book-of-the-Year Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Israel Union List", + "workcode": "2509117", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xx, 122 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xx; 122 " +}, +"268091950": { + "books_id": "268091950", + "title": "Modern Jewish educational thought : problems and prospects", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weinstein, David", + "secondaryauthor": "Yizhar, Michael", + "authors": [{ + "lf": "Weinstein, David", + "fl": "David Weinstein" + }, + { + "lf": "Yizhar, Michael", + "fl": "Michael Yizhar" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Chicago : College of Jewish Studies, 1964.", + "date": "1964", + "summary": "Modern Jewish educational thought : problems and prospects by David Weinstein (1964)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["370.09176"], + "wording": ["Education", + "Education", + "Education", + "Social sciences"] + }, + "lcc": { + "code": "LC719.W4" + }, + "subject": [["Jews Education"]], + "source": "Harvard OpenMetadata", + "lccn": "65019684", + "workcode": "32591709", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "88 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "88 " +}, +"268091993": { + "books_id": "268091993", + "title": "The Holocaust in American Life", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Novick, Peter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Novick, Peter", + "fl": "Peter Novick", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0618082328", + "isbn": { + "0": "0618082328", + "2": "9780618082322" + }, + "asin": "0618082328", + "ean": ["0618082328"], + "upc": ["046442082327"], + "publication": "Mariner Books (2000), 382 pages", + "date": "2000", + "summary": "The Holocaust in American Life by Peter Novick (2000)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5318"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Holocaust", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D804.U55 N68" + }, + "subject": { + "0": ["7.150"], + "1": ["Geschiedbeschouwing"], + "2": ["Holocaust"], + "3": ["Holocaust, Jewish (1939-1945)", + "Foreign public opinion, American"], + "5": ["Holocaust, Jewish (1939-1945)", + "Historiography"], + "7": ["Holocaust, Jewish (1939-1945)", + "Influence"], + "9": ["Invloed"], + "10": ["Jews", + "United States", + "Attitudes"], + "12": ["Public opinion", + "United States"], + "14": ["Public opinion", + "United states"], + "16": ["Publieke opinie"], + "17": ["holocaust"] + }, + "awards": ["Los Angeles Times Book Prize", + "Ralph Waldo Emerson Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "Amazon.com", + "workcode": "13867", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.9 x 6 x 1 inches", + "weight": "1 pounds", + "pages": "382 " +}, +"268092002": { + "books_id": "268092002", + "title": "The Polish lad", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Linetski, Isaac Joel", + "authors": [{ + "lf": "Linetski, Isaac Joel", + "fl": "Isaac Joel Linetski" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600658", + "isbn": { + "0": "0827600658", + "2": "9780827600652" + }, + "publication": "Philadelphia : The Jewish publication society of America, 1975", + "date": "1975", + "summary": "The Polish lad by Isaac Joel Linetski (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "H93 L755" + }, + "subject": [["Yiddish fiction Translations into English"]], + "source": "Israel Union List", + "workcode": "4843274", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "305 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "305 " +}, +"268092021": { + "books_id": "268092021", + "title": "The book of seasons", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Maimonides, Moses", + "secondaryauthor": "Maimonides, Moses|Gandz, Solomon|Klein, Hyman", + "secondaryauthorroles": "||", + "authors": [{ + "lf": "Maimonides, Moses", + "fl": "Moses Maimonides" + }, + { + "lf": "Maimonides, Moses", + "fl": "Moses Maimonides" + }, + { + "lf": "Gandz, Solomon", + "fl": "Solomon Gandz" + }, + { + "lf": "Klein, Hyman", + "fl": "Hyman Klein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300004753", + "isbn": { + "0": "0300004753", + "2": "9780300004755" + }, + "publication": "New Haven, Conn. : Yale University Press, c1961.", + "date": "1961", + "summary": "The book of seasons by Moses Maimonides (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.172"], + "wording": ["Early Rabbinical", + "Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "KBM520 .A213" + }, + "subject": [["JEWISH LAW"], + ["Jewish Law"], + ["Jewish law"]], + "series": ["The Code of Maimonides - Yale Judaica Series"], + "genre": ["Nonfiction", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "3805", + "1944"], + "source": "Yale University (New Haven, CT)", + "lccn": "49009495", + "workcode": "9294708", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxxiv, 633 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xxxiv; 633 " +}, +"268092035": { + "books_id": "268092035", + "title": "Halachic Sources: From the Beginning to the Ninth Century", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Newman, J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Newman, J.", + "fl": "J. Newman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00DKZAC1Y", + "publication": "Brill", + "summary": "Halachic Sources: From the Beginning to the Ninth Century by J. Newman", + "lcc": [], + "source": "amazon.com books", + "workcode": "32591721", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.5070632026 pounds" +}, +"268092071": { + "books_id": "268092071", + "title": "Esther in medieval garb : Jewish interpretation of the book of Esther in the Middle Ages", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Walfish, Barry", + "authors": [{ + "lf": "Walfish, Barry", + "fl": "Barry Walfish" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0791410390", + "isbn": { + "0": "0791410390", + "2": "9780791410394" + }, + "publication": "Albany : State University of New York Press, [1993]", + "date": "1993", + "summary": "Esther in medieval garb : Jewish interpretation of the book of Esther in the Middle Ages by Barry Walfish (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222/.906/0902", + "222.906"], + "wording": ["Esther", + "Historical books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1375.2.W356 1993" + }, + "subject": [["Esther (bijbelboek)"], + ["Exegese"], + ["Jodendom"], + ["exegese"], + ["jodendom"]], + "source": "Washington Research Library Consortium (Washington, DC)", + "lccn": "91021426", + "workcode": "3608307", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiv, 386 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xiv; 386 " +}, +"268092090": { + "books_id": "268092090", + "title": "The Bible from within: The method of total interpretation (Publications of the Perry Foundation for Biblical Research in the Hebrew University of Jerusalem)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Weiss, Meir", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weiss, Meir", + "fl": "Meir Weiss", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "965223527X", + "isbn": { + "0": "965223527X", + "2": "9789652235275" + }, + "asin": "965223527X", + "ean": ["965223527X"], + "publication": "Magnes Press, Hebrew University (1984), Edition: First Edition, 461 pages", + "date": "1984", + "summary": "The Bible from within: The method of total interpretation (Publications of the Perry Foundation for Biblical Research in the Hebrew University of Jerusalem) by Meir Weiss (1984)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS476 .W4313" + }, + "source": "amazon.com all media", + "workcode": "11015060", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "461 p.", + "height": "8.6 inches", + "thickness": "1.5 inches", + "length": "6.2 inches", + "dimensions": "8.6 x 6.2 x 1.5 inches", + "weight": "1.75 pounds", + "pages": "461 " +}, +"268092115": { + "books_id": "268092115", + "title": "Selected poems", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bialik, Hayyim Nahman", + "secondaryauthor": "Efros, Israel", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Bialik, Hayyim Nahman", + "fl": "Hayyim Nahman Bialik" + }, + { + "lf": "Efros, Israel", + "fl": "Israel Efros", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819700606", + "isbn": { + "0": "0819700606", + "2": "9780819700605" + }, + "publication": "New York : Jewish Braille Institute, 1966.", + "date": "1966", + "summary": "Selected poems by Hayyim Nahman Bialik (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.415"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew poetry", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 A6" + }, + "subject": [["English poetry Translations from Hebrew"], + ["Hebrew poetry Translations into English"]], + "awards": ["Philip Ward's Lifetime Reading Plan", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "Poetry"], + "genre_id": ["17160326", + "10010"], + "source": "Library of Congress (Washington, DC)", + "lccn": "96987538", + "workcode": "2013499", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "240 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1.25 inches", + "weight": "1.55 pounds", + "pages": "240 " +}, +"268092142": { + "books_id": "268092142", + "title": "The Destruction of the European Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hilberg, Raul", + "authors": [{ + "lf": "Hilberg, Raul", + "fl": "Raul Hilberg" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0531064522", + "isbn": { + "0": "0531064522", + "2": "9780531064528" + }, + "publication": "New York : Franklin Watts, 1973.", + "date": "1973", + "summary": "The Destruction of the European Jews by Raul Hilberg (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS 135.E83H48 1973" + }, + "subject": [["Genocide Case studies"], + ["Germany Politics and Government 1933-1945"], + ["Germany Politics and government 1933-1945"], + ["Germany politics and government 1933-1945"], + ["Holocaust, Jewish (1939-1945)"], + ["Holocaust, jewish (1939-1945)"], + ["Jews Europe Persecutions"]], + "originaltitle": "The destruction of the European Jews", + "awards": ["Anisfield-Wolf Book Award", + "Premio Acqui Storia"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "Israel Union List", + "workcode": "77267", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "viii; 790 " +}, +"268092147": { + "books_id": "268092147", + "title": "The education of the Jewish child: A study of 200 Reform Jewish religious schools", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hertz, Richard C", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hertz, Richard C", + "fl": "Richard C Hertz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EKFFY", + "publication": "Union of American Hebrew Congregations (1953), 185 pages", + "date": "1953", + "summary": "The education of the Jewish child: A study of 200 Reform Jewish religious schools by Richard C Hertz (1953)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM103.H4" + }, + "source": "amazon.com books", + "workcode": "15210196", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092151": { + "books_id": "268092151", + "title": "How To Make Yourself Miserable: Another Vital Training Manual", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenburg, Dan", + "primaryauthorrole": "Author", + "secondaryauthor": "Marcia Jacobs|Marv Rubin", + "secondaryauthorroles": "Author|Illustrator", + "authors": [{ + "lf": "Greenburg, Dan", + "fl": "Dan Greenburg", + "role": "Author" + }, + { + "lf": "Marcia Jacobs", + "fl": "Marcia Jacobs", + "role": "Author" + }, + { + "lf": "Marv Rubin", + "fl": "Marv Rubin", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000NZZY80", + "publication": "Random House (1966), Edition: 1st, 112 pages", + "date": "1966", + "summary": "How To Make Yourself Miserable: Another Vital Training Manual by Dan Greenburg (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["818.5402"], + "wording": ["1945-1999", + "20th Century", + "American literature in English", + "American miscellaneous writings in English", + "Literature"] + }, + "lcc": { + "code": "PN6231.P785 G7" + }, + "subject": { + "0": ["Psychology", + "Humor"], + "2": ["Psychology", + "humor"] + }, + "originaltitle": "How to Make Yourself Miserable : A Vital Training Manual", + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "449226", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "112 p.", + "weight": "0.7 pounds", + "pages": "112 " +}, +"268092152": { + "books_id": "268092152", + "title": "The Mind of the Talmud: An Intellectual History of the Bavli", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kraemer, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kraemer, David", + "fl": "David Kraemer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195062906", + "isbn": { + "0": "0195062906", + "2": "9780195062908" + }, + "asin": "0195062906", + "ean": ["0195062906"], + "publication": "Oxford University Press (1990), Edition: 1, 240 pages", + "date": "1990", + "summary": "The Mind of the Talmud: An Intellectual History of the Bavli by David Kraemer (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501 .K72" + }, + "subject": [["Jewish law", + "Interpretation and construction"], + ["Talmud", + "History"]], + "source": "amazon.com books", + "workcode": "1355885", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 8.9 x 5.92 inches", + "height": "5.92 inches", + "thickness": "0.84 inches", + "length": "8.9 inches", + "dimensions": "5.92 x 8.9 x 0.84 inches", + "weight": "0.95019234922 pounds", + "pages": "240 " +}, +"268092164": { + "books_id": "268092164", + "title": "The Death Brigade (The Janowska Road)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wells, Leon W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wells, Leon W.", + "fl": "Leon W. Wells", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0896040003", + "isbn": { + "0": "0896040003", + "2": "9780896040007" + }, + "asin": "0896040003", + "ean": ["0896040003"], + "publication": "Holocaust Library (1978), 305 pages", + "date": "1978", + "summary": "The Death Brigade (The Janowska Road) by Leon W. Wells (1978)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135.R93 L898" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Ukraine", + "L?viv", + "Personal narratives"], + ["Jews", + "Persecutions", + "Ukraine", + "L?viv"], + ["L?viv (Ukraine)", + "Ethnic relations"], + ["Wells, Leon Weliczker, 1925-"], + ["World War, 1939-1945", + "Atrocities"], + ["World War, 1939-1945", + "Poland"]], + "originaltitle": "The Janowska Road", + "genre": ["Nonfiction", + "Biography & Memoir", + "History"], + "genre_id": ["20275895", + "1240", + "1599"], + "source": "amazon.com", + "workcode": "2874502", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268092167": { + "books_id": "268092167", + "title": "The Jew: Essays from Martin Buber's \"Journal de Jude\", 1916-28 (Judaic studies series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0817369082", + "isbn": { + "0": "0817369082", + "2": "9780817369088" + }, + "asin": "0817369082", + "ean": ["0817369082"], + "publication": "The University of Alabama Press (1980), Edition: First Edition, 360 pages", + "date": "1980", + "summary": "The Jew: Essays from Martin Buber's \"Journal de Jude\", 1916-28 (Judaic studies series) by Martin Buber (1980)", + "originallanguage": ["German"], + "originallanguage_codeA": ["ger"], + "ddc": { + "code": ["296.08"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40.J39" + }, + "source": "Amazon.com", + "workcode": "2471409", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092196": { + "books_id": "268092196", + "title": "The encyclopedia of Talmudic sages", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Bader, Gershom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bader, Gershom", + "fl": "Gershom Bader", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876689039", + "isbn": { + "0": "0876689039", + "2": "9780876689035" + }, + "asin": "0876689039", + "ean": ["0876689039"], + "publication": "Kuperard (1988), Edition: First Edition, 300 pages", + "date": "1988", + "summary": "The encyclopedia of Talmudic sages by Gershom Bader (1988)", + "language": ["Yiddish", + "English"], + "language_codeA": ["yid", + "eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["yid", + "eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM501 .B3313" + }, + "source": "amazon.com books", + "workcode": "668732", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092222": { + "books_id": "268092222", + "title": "Zionism and the Fin de Siècle: Cosmopolitanism and Nationalism from Nordau to Jabotinsky", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stanislawski, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stanislawski, Michael", + "fl": "Michael Stanislawski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520227883", + "isbn": { + "0": "0520227883", + "2": "9780520227880" + }, + "asin": "0520227883", + "ean": ["8580000701043"], + "publication": "University of California Press (2001), Edition: First Edition, 312 pages", + "date": "2001", + "summary": "Zionism and the Fin de Siècle: Cosmopolitanism and Nationalism from Nordau to Jabotinsky by Michael Stanislawski (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54"], + "wording": ["Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS151.A2 S73" + }, + "source": "amazon.com books", + "workcode": "6980811", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "312 p.; 9 inches", + "height": "9 inches", + "thickness": "0.8 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.8 inches", + "weight": "0.92 pounds", + "pages": "312 " +}, +"268092239": { + "books_id": "268092239", + "title": "8 Great Hebrew Short Novels", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lelchuk, Alan", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Lelchuk, Alan", + "fl": "Alan Lelchuk", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592641121", + "isbn": { + "0": "1592641121", + "2": "9781592641123" + }, + "asin": "1592641121", + "ean": ["1592641121"], + "publication": "Toby Press (2005), Edition: 2nd Revised ed., 451 pages", + "date": "2005", + "summary": "8 Great Hebrew Short Novels by Alan Lelchuk (2005)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5059.E8 E33" + }, + "subject": [["Hebrew fiction", + "Translations into English"]], + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com books", + "workcode": "1811072", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.5 inches", + "thickness": "1.25 inches", + "length": "5.62 inches", + "dimensions": "8.5 x 5.62 x 1.25 inches", + "weight": "1.4 pounds", + "pages": "400 " +}, +"268092246": { + "books_id": "268092246", + "title": "South American Leaf Blight of Hevea Brasiliensis (Phytopathological Paper)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Arbor, Spring", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Arbor, Spring", + "fl": "Spring Arbor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0000000906", + "isbn": { + "0": "0000000906", + "2": "9780000000903" + }, + "asin": "0000000906", + "ean": ["0000000906"], + "publication": "CABI (1970), Edition: 6th, 21 pages", + "date": "1970", + "summary": "South American Leaf Blight of Hevea Brasiliensis (Phytopathological Paper) by Spring Arbor (1970)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["580"], + "wording": ["Plants", + "Plants (Botany)", + "Science"] + }, + "lcc": [], + "source": "amazon.com", + "workcode": "3657556", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "10.98 inches", + "thickness": "0.35 inches", + "length": "4.37 inches", + "dimensions": "10.98 x 4.37 x 0.35 inches", + "weight": "0.18 pounds", + "pages": "21 " +}, +"268092254": { + "books_id": "268092254", + "title": "Judenrat: The Jewish Councils in Eastern Europe under Nazi Occupation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Trunk, Isaiah", + "primaryauthorrole": "Author", + "secondaryauthor": "Katz, Steven T.", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Trunk, Isaiah", + "fl": "Isaiah Trunk", + "role": "Author" + }, + { + "lf": "Katz, Steven T.", + "fl": "Steven T. Katz", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080329428X", + "isbn": { + "0": "080329428X", + "2": "9780803294288" + }, + "asin": "080329428X", + "ean": ["080329428X"], + "upc": ["884328313697"], + "publication": "University of Nebraska Press (1996), Edition: Reprint, 663 pages", + "date": "1996", + "summary": "Judenrat: The Jewish Councils in Eastern Europe under Nazi Occupation by Isaiah Trunk (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "KBM2612.J83 T78" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Jewish councils", + "Europe, Eastern", + "History"], + "3": ["Jewish councils", + "Europe, Eastern", + "History", + "20th century"], + "4": ["Jews", + "Europe, Eastern", + "Politics and government"] + }, + "originaltitle": "Judenrat : the Jewish councils in Eastern Europe under Nazi occupation", + "awards": ["National Book Award", + "National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "928356", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "663 p.; 9 inches", + "height": "9 inches", + "thickness": "1.5 inches", + "length": "6.25 inches", + "dimensions": "9 x 6.25 x 1.5 inches", + "weight": "2.0502990366 pounds", + "pages": "663 " +}, +"268092271": { + "books_id": "268092271", + "title": "The Book of Job : a new commentary", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Tur-Sinai, Naphtali H.", + "authors": [{ + "lf": "Tur-Sinai, Naphtali H.", + "fl": "Naphtali H. Tur-Sinai" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem : Kiryath Sepher, 1957.", + "date": "1957", + "summary": "The Book of Job : a new commentary by Naphtali H. Tur-Sinai (1957)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["D0503339570"] + }, + "lcc": { + "code": "BS1415.3" + }, + "subject": [["Bible. O.T. Job", + "Commentaries"]], + "source": "University of Oxford", + "workcode": "977094", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "lxxvi, 588 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "lxxvi; 588 " +}, +"268092280": { + "books_id": "268092280", + "title": "How to be a Jewish Mother: A Very Lovely Training Manual", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenburg, Dan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenburg, Dan", + "fl": "Dan Greenburg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0843100303", + "isbn": { + "0": "0843100303", + "2": "9780843100303" + }, + "asin": "0843100303", + "ean": ["0843100303"], + "publication": "Price, Stern, Sloan (1987), Edition: 8th Printing, 99 pages", + "date": "1987", + "summary": "How to be a Jewish Mother: A Very Lovely Training Manual by Dan Greenburg (1987)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["817.54"], + "wording": ["1900-1999", + "1945-1999", + "American humor and satire in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PN6231.M68 G7" + }, + "subject": [["Mothers", + "Humor"]], + "awards": ["New York Times bestseller"], + "genre": ["Fiction"], + "genre_id": ["17160326"], + "source": "amazon.com", + "workcode": "628391", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268092299": { + "books_id": "268092299", + "title": "Essential Essays on Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berkovits, Eliezer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berkovits, Eliezer", + "fl": "Eliezer Berkovits", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9657052033", + "isbn": { + "0": "9657052033", + "2": "9789657052037" + }, + "asin": "9657052033", + "ean": ["9657052033"], + "publication": "Shalem Press (2002), 393 pages", + "date": "2002", + "summary": "Essential Essays on Judaism by Eliezer Berkovits (2002)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .B447" + }, + "subject": [["Judaism"], + ["Judaism", + "20th Century"], + ["Judaism", + "20th century"], + ["judaism"]], + "source": "Amazon.com", + "workcode": "1170849", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "9.2 inches", + "thickness": "1.2 inches", + "length": "6.1 inches", + "dimensions": "9.2 x 6.1 x 1.2 inches", + "weight": "1.4 pounds", + "pages": "393 " +}, +"268092303": { + "books_id": "268092303", + "title": "From diplomacy to resistance : a history of Jewish Palestine 1939-1945", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bauer, Yehuda", + "authors": [{ + "lf": "Bauer, Yehuda", + "fl": "Yehuda Bauer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Atheneum, 1973, ©1970.", + "date": "1973", + "summary": "From diplomacy to resistance : a history of Jewish Palestine 1939-1945 by Yehuda Bauer (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["E 982", + "982"], + "wording": ["Argentina", + "History & geography", + "South America"] + }, + "lcc": { + "code": "DS 125.4 B383" + }, + "subject": [["Eretz Israel History 1929-1948"], + ["Eretz Israel Underground movements"], + ["World War, 1939-1945 Eretz Israel"], + ["Zionism History"]], + "source": "Israel Union List", + "lccn": "70105065", + "workcode": "662762", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 432 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "ix; 432 " +}, +"268092313": { + "books_id": "268092313", + "title": "Modern Jewish educational thought: problems and prospects", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weinstein, David", + "secondaryauthor": "Yizhar, Michael", + "authors": [{ + "lf": "Weinstein, David", + "fl": "David Weinstein" + }, + { + "lf": "Yizhar, Michael", + "fl": "Michael Yizhar" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Chicago, College of Jewish Studies [1964]", + "date": "1964", + "summary": "Modern Jewish educational thought: problems and prospects by David Weinstein (1964)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["370/.09176/6", + "370.09176"], + "wording": ["Education", + "Education", + "Education", + "Social sciences"] + }, + "lcc": { + "code": "LC719.W4" + }, + "subject": [["Jews Education"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "65019684", + "workcode": "32591709", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "88 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "88 " +}, +"268092316": { + "books_id": "268092316", + "title": "A century of Jewish life", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Elbogen, Ismar", + "secondaryauthor": "Grayzel, Solomon|Marx, Alexander", + "secondaryauthorroles": "Editor.|", + "authors": [{ + "lf": "Elbogen, Ismar", + "fl": "Ismar Elbogen" + }, + { + "lf": "Grayzel, Solomon", + "fl": "Solomon Grayzel", + "role": "Editor." + }, + { + "lf": "Marx, Alexander", + "fl": "Alexander Marx" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish publication Society of America, 1944.", + "date": "1944", + "summary": "A century of Jewish life by Ismar Elbogen (1944)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS125.E4" + }, + "subject": [["JEWS"], + ["Jews"], + ["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["jews"]], + "source": "Oregon State University (Corvallis, OR)", + "lccn": "44004448", + "workcode": "1760819", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xliii, 814 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xliii; 814 " +}, +"268092352": { + "books_id": "268092352", + "title": "American Judaism: A History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sarna, Jonathan D.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sarna, Jonathan D.", + "fl": "Jonathan D. Sarna", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780300109764", + "isbn": ["9780300109764", + "0300109768"], + "asin": "0300109768", + "ean": ["0300109768"], + "publication": "Yale University Press (2005), 490 pages", + "date": "2005", + "summary": "American Judaism: A History by Jonathan D. Sarna (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205 .S26" + }, + "subject": { + "0": ["Jews", + "United States", + "History"], + "2": ["Judaism", + "United States", + "History"] + }, + "awards": ["National Jewish Book Award", + "PROSE Award", + "Saul Viener Book Prize"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106609", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "490 p.; 9.22 x 1.33 inches", + "height": "1.33 inches", + "thickness": "6.12 inches", + "length": "9.22 inches", + "dimensions": "1.33 x 9.22 x 6.12 inches", + "weight": "1.58 pounds", + "pages": "490 " +}, +"268092355": { + "books_id": "268092355", + "title": "My Promised Land: The Triumph and Tragedy of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shavit, Ari", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shavit, Ari", + "fl": "Ari Shavit", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0385521707", + "isbn": { + "0": "0385521707", + "2": "9780385521703" + }, + "asin": "0385521707", + "ean": ["0385521707"], + "publication": "Spiegel & Grau (2013), Edition: 1st Edition, 464 pages", + "date": "2013", + "summary": "My Promised Land: The Triumph and Tragedy of Israel by Ari Shavit (2013)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.05"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .S381877" + }, + "awards": ["Anisfield-Wolf Book Award", + "Lionel Gelber Prize", + "Natan Award", + "National Jewish Book Award", + "Sophie Brody Medal", + "The Economist Best Books"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com", + "workcode": "13689611", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092376": { + "books_id": "268092376", + "title": "The Modern Hebrew Poem Itself: A New and Updated Edition", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Burnshaw, Stanley", + "primaryauthorrole": "Editor", + "secondaryauthor": "Alter, Robert|Felstiner, John|Harshav, Benjamin|Sandbank, Shimon|Band, Arnold J.|Friend, Robert|Schimmel, Harold|Pagis, Dan|Ravikovitch, Dalia|Spicehandler, Ezra|Spicehandler, Ezra|Carmi, T|Goldberg, Lea|Mirsky, David|Blanc, Haim|Or, Amir|Bar-Yosef, Hamutal|Hirschfeld, Ariel|Hirschfeld, Ariel|Huss, Abraham|Lachman, Lilach|Sachs, Arieh|Rubner, Tuvya|Saraph, David|Hever, Hanan|Bar-El, Yehudit|Amouyal, Jules|Glassman, Susan F.", + "secondaryauthorroles": "Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Editor|Contributor|Editor|Contributor|Contributor|Contributor|Contributor|Contributor|Editor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Contributor|Editor", + "authors": [{ + "lf": "Burnshaw, Stanley", + "fl": "Stanley Burnshaw", + "role": "Editor" + }, + { + "lf": "Alter, Robert", + "fl": "Robert Alter", + "role": "Contributor" + }, + { + "lf": "Felstiner, John", + "fl": "John Felstiner", + "role": "Contributor" + }, + { + "lf": "Harshav, Benjamin", + "fl": "Benjamin Harshav", + "role": "Contributor" + }, + { + "lf": "Sandbank, Shimon", + "fl": "Shimon Sandbank", + "role": "Contributor" + }, + { + "lf": "Band, Arnold J.", + "fl": "Arnold J. Band", + "role": "Contributor" + }, + { + "lf": "Friend, Robert", + "fl": "Robert Friend", + "role": "Contributor" + }, + { + "lf": "Schimmel, Harold", + "fl": "Harold Schimmel", + "role": "Contributor" + }, + { + "lf": "Pagis, Dan", + "fl": "Dan Pagis", + "role": "Contributor" + }, + { + "lf": "Ravikovitch, Dalia", + "fl": "Dalia Ravikovitch", + "role": "Contributor" + }, + { + "lf": "Spicehandler, Ezra", + "fl": "Ezra Spicehandler", + "role": "Editor" + }, + { + "lf": "Spicehandler, Ezra", + "fl": "Ezra Spicehandler", + "role": "Contributor" + }, + { + "lf": "Carmi, T", + "fl": "T Carmi", + "role": "Editor" + }, + { + "lf": "Goldberg, Lea", + "fl": "Lea Goldberg", + "role": "Contributor" + }, + { + "lf": "Mirsky, David", + "fl": "David Mirsky", + "role": "Contributor" + }, + { + "lf": "Blanc, Haim", + "fl": "Haim Blanc", + "role": "Contributor" + }, + { + "lf": "Or, Amir", + "fl": "Amir Or", + "role": "Contributor" + }, + { + "lf": "Bar-Yosef, Hamutal", + "fl": "Hamutal Bar-Yosef", + "role": "Contributor" + }, + { + "lf": "Hirschfeld, Ariel", + "fl": "Ariel Hirschfeld", + "role": "Editor" + }, + { + "lf": "Hirschfeld, Ariel", + "fl": "Ariel Hirschfeld", + "role": "Contributor" + }, + { + "lf": "Huss, Abraham", + "fl": "Abraham Huss", + "role": "Contributor" + }, + { + "lf": "Lachman, Lilach", + "fl": "Lilach Lachman", + "role": "Contributor" + }, + { + "lf": "Sachs, Arieh", + "fl": "Arieh Sachs", + "role": "Contributor" + }, + { + "lf": "Rubner, Tuvya", + "fl": "Tuvya Rubner", + "role": "Contributor" + }, + { + "lf": "Saraph, David", + "fl": "David Saraph", + "role": "Contributor" + }, + { + "lf": "Hever, Hanan", + "fl": "Hanan Hever", + "role": "Contributor" + }, + { + "lf": "Bar-El, Yehudit", + "fl": "Yehudit Bar-El", + "role": "Contributor" + }, + { + "lf": "Amouyal, Jules", + "fl": "Jules Amouyal", + "role": "Contributor" + }, + { + "lf": "Glassman, Susan F.", + "fl": "Susan F. Glassman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814324851", + "isbn": { + "0": "0814324851", + "2": "9780814324851" + }, + "asin": "0814324851", + "ean": ["0814324851"], + "publication": "Wayne State University Press (2003), Edition: second edition, 360 pages", + "date": "2003", + "summary": "The Modern Hebrew Poem Itself: A New and Updated Edition by Stanley Burnshaw (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5059.E3 M57" + }, + "subject": [["Hebrew poetry, Modern"], + ["Hebrew poetry, Modern", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "5596730", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "360 p.; 9.34 inches", + "height": "9.34 inches", + "thickness": "0.9 inches", + "length": "7.38 inches", + "dimensions": "9.34 x 7.38 x 0.9 inches", + "weight": "1.62 pounds", + "pages": "360 " +}, +"268092400": { + "books_id": "268092400", + "title": "The flowering of modern Hebrew literature; a volume of literary evaluation", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ribalow, Menachem", + "authors": [{ + "lf": "Ribalow, Menachem", + "fl": "Menachem Ribalow" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Twayne Publishers [1959]", + "date": "1959", + "summary": "The flowering of modern Hebrew literature; a volume of literary evaluation by Menachem Ribalow (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.409"], + "wording": ["Afro-Asiatic literatures", + "Hebrew literature", + "History and criticism of Hebrew literature", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5020.R44" + }, + "subject": [["Hebrew literature, Modern History and criticism"], + ["Hebrew literature, Modern Translations into English"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "59008385", + "workcode": "9183950", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "394 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "394 " +}, +"268092422": { + "books_id": "268092422", + "title": "The Wisdom Books: Job, Proverbs, and Ecclesiastes: A Translation with Commentary", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Alter, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Alter, Robert", + "fl": "Robert Alter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393068129", + "isbn": { + "0": "0393068129", + "2": "9780393068122" + }, + "asin": "B00AR388UE", + "ean": ["0393068129"], + "publication": "W. W. Norton & Company (2010), Edition: First Edition, 416 pages", + "date": "2010", + "summary": "The Wisdom Books: Job, Proverbs, and Ecclesiastes: A Translation with Commentary by Robert Alter (2010)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["223.077"], + "wording": ["Poetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1403 .A48213" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com", + "workcode": "10289208", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "1.4 inches", + "length": "6.5 inches", + "dimensions": "9.3 x 6.5 x 1.4 inches", + "weight": "1.72 pounds", + "pages": "416 " +}, +"268092470": { + "books_id": "268092470", + "title": "Rabad of Posqui`Eres: A Twelfth-Century Talmudist", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Twersky, Isadore", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Twersky, Isadore", + "fl": "Isadore Twersky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827601239", + "isbn": { + "0": "0827601239", + "2": "9780827601239" + }, + "asin": "0827601239", + "ean": ["0827601239"], + "publication": "Jewish Pubn Society (1979), Edition: Revised, 368 pages", + "date": "1979", + "summary": "Rabad of Posqui`Eres: A Twelfth-Century Talmudist by Isadore Twersky (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.17"], + "wording": ["Early Rabbinical", + "Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.A226 T8" + }, + "source": "amazon.com books", + "workcode": "5786172", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268092490": { + "books_id": "268092490", + "title": "From Renaissance to Renaissance. (001)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silberschlag, Eisig", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silberschlag, Eisig", + "fl": "Eisig Silberschlag", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870681842", + "isbn": { + "0": "0870681842", + "2": "9780870681844" + }, + "asin": "0870681842", + "ean": ["0870681842"], + "publication": "Ktav Pub & Distributors Inc (1973), Edition: First Edition, 2 pages", + "date": "1973", + "summary": "From Renaissance to Renaissance. (001) by Eisig Silberschlag (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5017.S39" + }, + "source": "amazon.com books", + "workcode": "5414154", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "2 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.75 x 6.25 x 1.25 inches", + "weight": "1.4991433816 pounds", + "pages": "2 " +}, +"268092498": { + "books_id": "268092498", + "title": "Aristeas to Philocrates: (Letter of Aristeas)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hadas, Moses", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Hadas, Moses", + "fl": "Moses Hadas", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1556355068", + "isbn": { + "0": "1556355068", + "2": "9781556355066" + }, + "asin": "1556355068", + "ean": ["1556355068"], + "publication": "Wipf & Stock Pub (2007), Edition: Reprint, 244 pages", + "date": "2007", + "summary": "Aristeas to Philocrates: (Letter of Aristeas) by Moses Hadas (2007)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["229.91"], + "wording": ["Apocrypha, pseudepigrapha, intertestamental works", + "Apostolic epistles and canons; Clementines", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS744 .A7" + }, + "subject": [["Bible. O.T. Greek", + "Versions", + "Septuagint"]], + "source": "amazon.com", + "workcode": "3010390", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.3 inches", + "thickness": "0.5 inches", + "length": "5.7 inches", + "dimensions": "8.3 x 5.7 x 0.5 inches", + "weight": "0.65 pounds", + "pages": "233 " +}, +"268092515": { + "books_id": "268092515", + "title": "The Fathers According to Rabbi Nathan (Yale Judaica Series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldin, Judah", + "primaryauthorrole": "Translator", + "authors": [{ + "lf": "Goldin, Judah", + "fl": "Judah Goldin", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300046979", + "isbn": { + "0": "0300046979", + "2": "9780300046977" + }, + "asin": "0300046979", + "ean": ["0300046979"], + "publication": "Yale University Press (1990), Edition: Reprint, 304 pages", + "date": "1990", + "summary": "The Fathers According to Rabbi Nathan (Yale Judaica Series) by Judah Goldin (1990)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM506.A2 E5" + }, + "subject": [["Jewish ethics"]], + "source": "Amazon.com", + "workcode": "2358478", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8.4 inches", + "thickness": "0.9 inches", + "length": "5.5 inches", + "dimensions": "8.4 x 5.5 x 0.9 inches", + "weight": "0.8 pounds", + "pages": "304 " +}, +"268092517": { + "books_id": "268092517", + "title": "A History of Jewish Literature: The Arabic-Spanish Period (A History of Jewish Literature, Volume 1)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Zinberg, Israel", + "primaryauthorrole": "Author", + "secondaryauthor": "Martin, Bernard|Martin, Bernard", + "secondaryauthorroles": "Editor|Translator", + "authors": [{ + "lf": "Zinberg, Israel", + "fl": "Israel Zinberg", + "role": "Author" + }, + { + "lf": "Martin, Bernard", + "fl": "Bernard Martin", + "role": "Editor" + }, + { + "lf": "Martin, Bernard", + "fl": "Bernard Martin", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0829502289", + "isbn": { + "0": "0829502289", + "2": "9780829502282" + }, + "asin": "0829502289", + "ean": ["0829502289"], + "publication": "Press of Case Western Reserve University (1972), Edition: First Edition, 231 pages", + "date": "1972", + "summary": "A History of Jewish Literature: The Arabic-Spanish Period (A History of Jewish Literature, Volume 1) by Israel Zinberg (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["809.889"], + "wording": ["By or for groups of persons", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "PJ5008.Z5313" + }, + "subject": { + "0": ["Jewish literature", + "History and criticism"], + "2": ["Judaism and literature"] + }, + "series": ["A History of Jewish Literature"], + "genre": ["Fiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["17160326", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "1663143", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "231 p.", + "weight": "1.9 pounds", + "pages": "231 " +}, +"268092543": { + "books_id": "268092543", + "title": "Insurance in rabbinic law,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Passamaneck, Stephen M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Passamaneck, Stephen M.", + "fl": "Stephen M. Passamaneck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0852242581", + "isbn": { + "0": "0852242581", + "2": "9780852242582" + }, + "asin": "0852242581", + "ean": ["0852242581"], + "publication": "Edinburgh University Press (1974), Edition: First Edition", + "date": "1974", + "summary": "Insurance in rabbinic law, by Stephen M. Passamaneck (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["368.2"], + "wording": ["Insurance", + "Insurance against damage to and loss of property in transit", + "Social problems and social services", + "Social sciences"] + }, + "lcc": { + "code": "KBM998.P37" + }, + "subject": [["Insurance, Marine (Jewish law)"]], + "source": "amazon.com books", + "workcode": "5598349", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"268092553": { + "books_id": "268092553", + "title": "Abraham Geiger & Liberal Judaism: The Challenge of the Nineteenth Century", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wiener, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wiener, Max", + "fl": "Max Wiener", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0878208003", + "isbn": { + "0": "0878208003", + "2": "9780878208005" + }, + "asin": "0878208003", + "ean": ["0878208003"], + "publication": "Hebrew Union College Press (1997), 312 pages", + "date": "1997", + "summary": "Abraham Geiger & Liberal Judaism: The Challenge of the Nineteenth Century by Max Wiener (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45.G38" + }, + "subject": [["Judaism"], + ["Rabbis", + "Germany", + "Biography"], + ["Reform Judaism"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "2980540", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "312 p.; 9 inches", + "height": "9 inches", + "thickness": "0.8 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.8 inches", + "weight": "0.809 pounds", + "pages": "312 " +}, +"268092578": { + "books_id": "268092578", + "title": "Archaeological Decipherment: A Handbook", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "W Barber, E. J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "W Barber, E. J.", + "fl": "E. J. W Barber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "069103544X", + "isbn": { + "0": "069103544X", + "2": "9780691035444" + }, + "asin": "069103544X", + "ean": ["069103544X"], + "publication": "Princeton University Press (1974), 276 pages", + "date": "1974", + "summary": "Archaeological Decipherment: A Handbook by E. J. W Barber (1974)", + "ddc": { + "code": ["913.031"], + "wording": ["Geography & travel", + "Geography of and travel in ancient world", + "History & geography"] + }, + "lcc": { + "code": "P211 .B28" + }, + "source": "amazon.com", + "workcode": "9472493", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092606": { + "books_id": "268092606", + "title": "A History of Jewish Literature, Volume II: French and German Jewry in Early Middle Ages / The Jewish Community of Medieval Italy", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Zinberg, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zinberg, Israel", + "fl": "Israel Zinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00X4ZL2YQ", + "publication": "Press of CWRU (1972), Edition: First Edition", + "date": "1972", + "summary": "A History of Jewish Literature, Volume II: French and German Jewry in Early Middle Ages / The Jewish Community of Medieval Italy by Israel Zinberg (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["809.889"], + "wording": ["By or for groups of persons", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "PJ5008" + }, + "series": ["A History of Jewish Literature"], + "genre": ["Fiction", + "Literature Studies and Criticism"], + "genre_id": ["17160326", + "53740"], + "source": "amazon.com books", + "workcode": "3262346", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092618": { + "books_id": "268092618", + "title": "The holocaust and halakhah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rosenbaum, Irving J.", + "authors": [{ + "lf": "Rosenbaum, Irving J.", + "fl": "Irving J. Rosenbaum" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870682962", + "isbn": { + "0": "0870682962", + "2": "9780870682964" + }, + "publication": "[New York] : Ktav, 1976", + "date": "1976", + "summary": "The holocaust and halakhah by Irving J. Rosenbaum (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "BM 521.R64 1976" + }, + "subject": [["Holocaust and Jewish Law"], + ["Holocaust and Jewish law"]], + "source": "Israel Union List", + "workcode": "4656917", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "177 p.; 8.9 inches", + "height": "8.9 inches", + "thickness": "0.1 inches", + "length": "5.9 inches", + "dimensions": "8.9 x 5.9 x 0.1 inches", + "weight": "0.05 pounds", + "pages": "x; 177 " +}, +"268092619": { + "books_id": "268092619", + "title": "Insurance in the halachah : a legal-historical study based upon the Responsa literature and other Jewish legal sources", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Slae, Menachem", + "authors": [{ + "lf": "Slae, Menachem", + "fl": "Menachem Slae" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel Aviv : Israel Insurance Association, 5742, 1982.", + "date": "5742", + "summary": "Insurance in the halachah : a legal-historical study based upon the Responsa literature and other Jewish legal sources by Menachem Slae (5742)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["A563 SLA i"] + }, + "lcc": [], + "subject": [["Insurance law (Jewish law)"], + ["JEWISH LAW"], + ["Jewish Law"], + ["Jewish law"]], + "source": "Israel Union List", + "workcode": "1670312", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "318 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "318 " +}, +"268092669": { + "books_id": "268092669", + "title": "Contemporary halakhic problems", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bleich, J. David", + "authors": [{ + "lf": "Bleich, J. David", + "fl": "J. David Bleich" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568713533", + "isbn": { + "0": "1568713533", + "2": "9781568713533" + }, + "publication": "New York : Ktav Pub. House, 1977-2016.", + "date": "1977", + "summary": "Contemporary halakhic problems by J. David Bleich (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520.3.B5" + }, + "subject": [["JEWISH LAW"], + ["JUDAISM"], + ["Jewish Law"], + ["Jewish law"], + ["Judaism"], + ["judaism"]], + "source": "Israel Union List", + "workcode": "8473016", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "24 cm", + "height": "24 cm", + "thickness": "1.5 inches", + "length": "6 inches", + "dimensions": "24 x 6 x 1.5 cm", + "weight": "1.9 pounds", + "pages": "436 " +}, +"268092683": { + "books_id": "268092683", + "title": "Yamim noraim : days of awe : program of study and analysis of sources", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobson, Bernhard Salomon", + "authors": [{ + "lf": "Jacobson, Bernhard Salomon", + "fl": "Bernhard Salomon Jacobson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel-Aviv : Sinai, c1978.", + "date": "1978", + "summary": "Yamim noraim : days of awe : program of study and analysis of sources by Bernhard Salomon Jacobson (1978)", + "language": ["English", + "German"], + "language_codeA": ["eng", + "ger"], + "originallanguage_codeA": ["eng", + "ger"], + "lcc": { + "code": "79 B 446" + }, + "subject": [["Judaism Liturgy"], + ["WORSHIP IN THE BIBLE"], + ["Worship in the Bible"], + ["Worship in the bible"]], + "source": "Israel Union List", + "workcode": "32591787", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "144 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "144 " +}, +"268092686": { + "books_id": "268092686", + "title": "History of Jewish Literature: The Struggle of Mysticism and Tradition Against Philosophical Rationalism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zinberg, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zinberg, Israel", + "fl": "Israel Zinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0829502416", + "isbn": { + "0": "0829502416", + "2": "9780829502411" + }, + "asin": "0829502416", + "ean": ["0829502416"], + "publication": "Ktav Pub & Distributors Inc (1973), Edition: First Edition, 323 pages", + "date": "1973", + "summary": "History of Jewish Literature: The Struggle of Mysticism and Tradition Against Philosophical Rationalism by Israel Zinberg (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["809.889"], + "wording": ["By or for groups of persons", + "History, description, critical appraisal of more than two literatures", + "Literature", + "Literature, rhetoric & criticism"] + }, + "lcc": { + "code": "PJ5008" + }, + "series": ["A History of Jewish Literature"], + "genre": ["Fiction", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["17160326", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "285419", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "323 p.; 10.25 inches", + "height": "10.25 inches", + "thickness": "1.25 inches", + "length": "6.75 inches", + "dimensions": "10.25 x 6.75 x 1.25 inches", + "weight": "2.25 pounds", + "pages": "323 " +}, +"268092706": { + "books_id": "268092706", + "title": "Guardians Of Our Heritage", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jung, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jung, Leo", + "fl": "Leo Jung", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001R66MV2", + "publication": "Bloch Publishing Company (1958)", + "date": "1958", + "summary": "Guardians Of Our Heritage by Leo Jung (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM750.J8515" + }, + "source": "amazon.com books", + "workcode": "14411802", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092715": { + "books_id": "268092715", + "title": "Rashi (Jewish thinkers)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pearl, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pearl, Chaim", + "fl": "Chaim Pearl", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0802131476", + "isbn": { + "0": "0802131476", + "2": "9780802131478" + }, + "asin": "0802131476", + "ean": ["0802131476"], + "publication": "Grove Press (1988), Edition: 1st, 113 pages", + "date": "1988", + "summary": "Rashi (Jewish thinkers) by Chaim Pearl (1988)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM755.S6 P4" + }, + "subject": [["Bible. O.T. Pentateuch", + "Commentaries"]], + "source": "amazon.com", + "workcode": "2407794", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268092721": { + "books_id": "268092721", + "title": "Shmuel Yosef Agnon: A Revolutionary Traditionalist (Modern Jewish Masters, 1)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shaked, Gershon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shaked, Gershon", + "fl": "Gershon Shaked", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814778941", + "isbn": { + "0": "0814778941", + "2": "9780814778944" + }, + "asin": "0814778941", + "ean": ["0814778941"], + "publication": "NYU Press (1989), Edition: First Edition, 1 pages", + "date": "1989", + "summary": "Shmuel Yosef Agnon: A Revolutionary Traditionalist (Modern Jewish Masters, 1) by Gershon Shaked (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 Z88" + }, + "source": "amazon.com books", + "workcode": "5304214", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "1 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.75 x 6 x 1 inches", + "weight": "1.0582188576 pounds", + "pages": "1 " +}, +"268092731": { + "books_id": "268092731", + "title": "Insurance in the halachah: A legal-historical study based upon the Responsa literature and other Jewish legal sources", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Slae, Menachem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Slae, Menachem", + "fl": "Menachem Slae", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007B0Q3S", + "publication": "Israel Insurance Association (1982), 318 pages", + "date": "1982", + "summary": "Insurance in the halachah: A legal-historical study based upon the Responsa literature and other Jewish legal sources by Menachem Slae (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "1670312", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092736": { + "books_id": "268092736", + "title": "Great Jewish Personalities in Ancient and Medieval Times - 1st Edition/1st Printing", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Noveck, Simon, Editor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Noveck, Simon, Editor", + "fl": "Simon Noveck, Editor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00D3VXYGU", + "publication": "Farrar, Straus and Cudahy (1959), Edition: First Edition", + "date": "1959", + "summary": "Great Jewish Personalities in Ancient and Medieval Times - 1st Edition/1st Printing by Simon Noveck, Editor (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM750.N67" + }, + "subject": [["Jews", + "Biography"]], + "series": ["B'nai B'rith great books"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "255714", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092741": { + "books_id": "268092741", + "title": "Judaism: Law and Ethics", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chief Rabbi Dr Isaac Herzog", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chief Rabbi Dr Isaac Herzog", + "fl": "Chief Rabbi Dr Isaac Herzog", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0900689730", + "isbn": { + "0": "0900689730", + "2": "9780900689734" + }, + "asin": "0900689730", + "ean": ["0900689730"], + "publication": "The Soncino Press (1974), Edition: First Edition, 227 pages", + "date": "1974", + "summary": "Judaism: Law and Ethics by Chief Rabbi Dr Isaac Herzog (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "9937827", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +},"268092759": { + "books_id": "268092759", + "title": "Breakdown & Bereavement", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brenner, Yosef Haim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brenner, Yosef Haim", + "fl": "Yosef Haim Brenner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592640672", + "isbn": { + "0": "1592640672", + "2": "9781592640676" + }, + "asin": "1592640672", + "ean": ["1592640672"], + "publication": "The Toby Press, LLC (2003), 308 pages", + "date": "2003", + "summary": "Breakdown & Bereavement by Yosef Haim Brenner (2003)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.B75232 PJ5053 .B7" + }, + "subject": { + "0": ["Jewish fiction"], + "2": ["Jews", + "Fiction"] + }, + "awards": ["The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com", + "workcode": "4250012", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268092812": { + "books_id": "268092812", + "title": "Conservative Judaism and Jewish law", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Siegel, Seymour", + "secondaryauthor": "Gertel, joint author. Elliot", + "authors": [{ + "lf": "Siegel, Seymour", + "fl": "Seymour Siegel" + }, + { + "lf": "Gertel, joint author. Elliot", + "fl": "joint author. Elliot Gertel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870684280", + "isbn": { + "0": "0870684280", + "2": "9780870684289" + }, + "publication": "New York : Rabbinical Assembly : distributed by Ktav, 1977.", + "date": "1977", + "summary": "Conservative Judaism and Jewish law by Seymour Siegel (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8/342", + "296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.5.C67" + }, + "subject": [["Conservative Judaism"], + ["Jewish Law Philosophy"], + ["Jewish law Philosophy"], + ["Responsa"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "77023968", + "workcode": "4050808", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxvii, 337 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xxvii; 337 " +}, +"268092827": { + "books_id": "268092827", + "title": "Yahweh and the gods of Canaan : a historical analysis of two contrasting faiths", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Albright, William Foxwell", + "authors": [{ + "lf": "Albright, William Foxwell", + "fl": "William Foxwell Albright" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0485174073", + "isbn": { + "0": "0485174073", + "2": "9780485174076" + }, + "publication": "Athlone P, 1968.", + "date": "1968", + "summary": "Yahweh and the gods of Canaan : a historical analysis of two contrasting faiths by William Foxwell Albright (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BM170 .A4" + }, + "subject": { + "0": ["Canaanites", + "Religion"], + "2": ["Judaism", + "History"], + "3": ["Judaism", + "History", + "To 70 A.D"] + }, + "source": "National Library of Scotland", + "workcode": "455589", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "250 p.; 8.6 inches", + "height": "8.6 inches", + "thickness": "0.9 inches", + "length": "5.6 inches", + "dimensions": "8.6 x 5.6 x 0.9 inches", + "weight": "1 pounds", + "pages": "250 " +}, +"268092856": { + "books_id": "268092856", + "title": "From slavery to freedom : the book of human destiny", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldman, Solomon", + "authors": [{ + "lf": "Goldman, Solomon", + "fl": "Solomon Goldman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : Abelard-Schuman, c1958.", + "date": "1958", + "summary": "From slavery to freedom : the book of human destiny by Solomon Goldman (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.7"], + "wording": ["Commentaries", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS 1245.2 F76G64 1958" + }, + "subject": [["Exodus, The Biblical teaching"]], + "series": ["The Book of Human Destiny"], + "genre": ["Nonfiction", + "Reference", + "Religion & Spirituality"], + "genre_id": ["20275895", + "4877", + "1944"], + "source": "Israel Union List", + "workcode": "9342171", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xiii, 751 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xiii; 751 " +}, +"268092860": { + "books_id": "268092860", + "title": "A History of the Jewish people", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Malamat, Abraham", + "secondaryauthor": "Ben-Sasson, Haim Hillel", + "authors": [{ + "lf": "Malamat, Abraham", + "fl": "Abraham Malamat" + }, + { + "lf": "Ben-Sasson, Haim Hillel", + "fl": "Haim Hillel Ben-Sasson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674397304", + "isbn": { + "0": "0674397304", + "2": "9780674397309" + }, + "publication": "Cambridge, Mass. : Harvard University Press, 1976.", + "date": "1976", + "summary": "A History of the Jewish people by Abraham Malamat (1976)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["909/.04/924", + "909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117.T613 1976" + }, + "subject": [["Jews HIstory"], + ["Jews History"], + ["Jews history"]], + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "75029879", + "workcode": "314787", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 1170 p.; 25 cm", + "height": "25 cm", + "thickness": "1.5 inches", + "length": "6 inches", + "dimensions": "25 x 6 x 1.5 cm", + "weight": "2.3 pounds", + "pages": "xii; 1170 " +}, +"268092867": { + "books_id": "268092867", + "title": "Meditations on the Siddur : studies in the essential problems and ideas of Jewish worship", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobson, B. S.", + "authors": [{ + "lf": "Jacobson, B. S.", + "fl": "B. S. Jacobson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel Aviv : Sinai Publishing, 1978.", + "date": "1978", + "summary": "Meditations on the Siddur : studies in the essential problems and ideas of Jewish worship by B. S. Jacobson (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.311.6", + "296.311"], + "wording": ["God", + "God and Hierarchy of Super-Human Beings", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "\u202a296.311.6 J32" + }, + "subject": [["Prayer Judaism Philosophy"]], + "source": "Israel Union List", + "workcode": "1671052", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "185 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "185 " +}, +"268092874": { + "books_id": "268092874", + "title": "Rabbinic Essays", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lauterbach, Jacob Zallel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lauterbach, Jacob Zallel", + "fl": "Jacob Zallel Lauterbach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0371655803", + "isbn": { + "0": "0371655803", + "2": "9780371655801" + }, + "asin": "0371655803", + "ean": ["0371655803"], + "publication": "HardPress Limited (2021), 600 pages", + "date": "2021", + "summary": "Rabbinic Essays by Jacob Zallel Lauterbach (2021)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM177 .L38" + }, + "subject": [["Jesus Christ", + "Jewish interpretations"], + ["Judaism", + "History", + "Talmudic period, 10-425"], + ["Lauterbach, Jacob Zallel 1873-1942", + "Bibliography"], + ["Lauterbach, Jacob Zallel, 1873-1942", + "Bibliography"]], + "source": "amazon.com books", + "workcode": "3132251", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "600 p.; 9.02 inches", + "height": "9.01573 inches", + "thickness": "1.216533 inches", + "length": "5.98424 inches", + "dimensions": "9.01573 x 5.98424 x 1.216533 inches", + "weight": "1.75 pounds", + "pages": "600 " +}, +"268092884": { + "books_id": "268092884", + "title": "The political thought of Hannah Arendt", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Canovan, Margaret.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Canovan, Margaret.", + "fl": "Margaret. Canovan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0151728151", + "isbn": { + "0": "0151728151", + "2": "9780151728152" + }, + "asin": "0151728151", + "ean": ["0151728151"], + "publication": "Harcourt Brace Jovanovich (1974), Edition: First Edition, 136 pages", + "date": "1974", + "summary": "The political thought of Hannah Arendt by Margaret. Canovan (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "15743664", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "136 p.", + "height": "8.3 inches", + "thickness": "0.8 inches", + "length": "5.7 inches", + "dimensions": "8.3 x 5.7 x 0.8 inches", + "weight": "1 pound", + "pages": "136 " +}, +"268092887": { + "books_id": "268092887", + "title": "Greek in Jewish Palestine/Hellenism in Jewish Palestine", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lieberman, Prof Saul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lieberman, Prof Saul", + "fl": "Prof Saul Lieberman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873340612", + "isbn": { + "0": "0873340612", + "2": "9780873340618" + }, + "asin": "0873340612", + "ean": ["0873340612"], + "publication": "The Jewish Theological Seminary Press (2012), 490 pages", + "date": "2012", + "summary": "Greek in Jewish Palestine/Hellenism in Jewish Palestine by Prof Saul Lieberman (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS112" + }, + "source": "amazon.com books", + "workcode": "3196336", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "490 p.; 9 inches", + "height": "9 inches", + "thickness": "1.11 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.11 inches", + "weight": "1.43080008038 pounds", + "pages": "490 " +}, +"268092891": { + "books_id": "268092891", + "title": "The Tenth Generation: The Origins of the Biblical Tradition", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Mendenhall, George E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mendenhall, George E.", + "fl": "George E. Mendenhall", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0801816548", + "isbn": { + "0": "0801816548", + "2": "9780801816543" + }, + "asin": "0801812674", + "ean": ["0801812674"], + "publication": "The Johns Hopkins University Press (1973), 248 pages", + "date": "1973", + "summary": "The Tenth Generation: The Origins of the Biblical Tradition by George E. Mendenhall (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.9"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1192.M45" + }, + "subject": [["Bible. O.T.", + "Theology"]], + "source": "amazon.com books", + "workcode": "65925", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "248 p.; 9.84 inches", + "height": "9.8425 inches", + "thickness": "0.59055 inches", + "length": "7.874 inches", + "dimensions": "9.8425 x 7.874 x 0.59055 inches", + "weight": "1.3448197982 pounds", + "pages": "248 " +}, +"268092916": { + "books_id": "268092916", + "title": "Unorthodox Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mirsky, Norman B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mirsky, Norman B.", + "fl": "Norman B. Mirsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814202837", + "isbn": { + "0": "0814202837", + "2": "9780814202838" + }, + "asin": "0814202837", + "ean": ["0814202837"], + "publication": "Ohio State Univ Pr (1978), 213 pages", + "date": "1978", + "summary": "Unorthodox Judaism by Norman B. Mirsky (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205.M57" + }, + "source": "amazon.com books", + "workcode": "8682236", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092950": { + "books_id": "268092950", + "title": "The Jews; Social Patterns of an American Group", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sklare, Marshall, Ed", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sklare, Marshall, Ed", + "fl": "Marshall Sklare, Ed", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JWG03U", + "publication": "Free Press (1958), Edition: First Edition", + "date": "1958", + "summary": "The Jews; Social Patterns of an American Group by Marshall Sklare, Ed (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "E184.J5 S55" + }, + "subject": { + "0": ["Jews", + "Identity"], + "2": ["Jews", + "United States"], + "3": ["Jews", + "United States", + "Social conditions"], + "5": ["Judaism", + "United States"], + "7": ["United States", + "Social conditions", + "20th century"] + }, + "source": "amazon.com books", + "workcode": "179257", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268092957": { + "books_id": "268092957", + "title": "Rashi: The Man and His World", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shereshevsky, Esra", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shereshevsky, Esra", + "fl": "Esra Shereshevsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568218923", + "isbn": { + "0": "1568218923", + "2": "9781568218922" + }, + "asin": "1568218923", + "ean": ["1568218923"], + "publication": "Jason Aronson, Inc. (1996), Edition: 1st Jason Aronson In, 256 pages", + "date": "1996", + "summary": "Rashi: The Man and His World by Esra Shereshevsky (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S6 S54" + }, + "source": "amazon.com books", + "workcode": "1362785", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "256 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.6 inches", + "length": "6.4 inches", + "dimensions": "9.02 x 6.4 x 0.6 inches", + "weight": "0.89948602896 pounds", + "pages": "256 " +}, +"268092969": { + "books_id": "268092969", + "title": "Responsa from the Holocaust.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Oshry, Ephraim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oshry, Ephraim", + "fl": "Ephraim Oshry", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "091081855X", + "isbn": { + "0": "091081855X", + "2": "9780910818551" + }, + "asin": "091081855X", + "ean": ["091081855X"], + "publication": "Judaica Pr (1983), 240 pages", + "date": "1983", + "summary": "Responsa from the Holocaust. by Ephraim Oshry (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940"], + "wording": ["History & geography", + "History of Europe", + "History of Europe"] + }, + "lcc": { + "code": "BM522.75 .S51713" + }, + "subject": [["Holocaust and Jewish law"], + ["Jews", + "Persecutions", + "Lithuania", + "Kaunas"], + ["Responsa", + "1800-1948"]], + "source": "amazon.com books", + "workcode": "560625", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.35 pounds", + "pages": "240 " +}, +"268092973": { + "books_id": "268092973", + "title": "The Religion of Israel: From Its Beginnings to the Babylonian Exile", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaufmann, Yechezkel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaufmann, Yechezkel", + "fl": "Yechezkel Kaufmann", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805203648", + "isbn": { + "0": "0805203648", + "2": "9780805203646" + }, + "asin": "0805203648", + "ean": ["0805203648"], + "publication": "Schocken Books (1972), 486 pages", + "date": "1972", + "summary": "The Religion of Israel: From Its Beginnings to the Babylonian Exile by Yechezkel Kaufmann (1972)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM155.K3743" + }, + "subject": [["Judaism", + "History"], + ["Judaism", + "History", + "To 70 A.D"]], + "source": "Amazon.com", + "workcode": "2000091", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "8 inches", + "thickness": "1.2 inches", + "length": "5.3 inches", + "dimensions": "8 x 5.3 x 1.2 inches", + "weight": "0.9 pounds", + "pages": "486 " +}, +"268093012": { + "books_id": "268093012", + "title": "Levi Yitzhak of Berditchev: Portrait of a Hasidic master", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel H. Dresner (Author)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel H. Dresner (Author)", + "fl": "Samuel H. Dresner (Author)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876771444", + "isbn": { + "0": "0876771444", + "2": "9780876771440" + }, + "asin": "0876771444", + "ean": ["0876771444"], + "publication": "Hartmore House (1974), Edition: First Edition, 224 pages", + "date": "1974", + "summary": "Levi Yitzhak of Berditchev: Portrait of a Hasidic master by Samuel H. Dresner (Author) (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.L44 D73" + }, + "subject": [["Berdychiv (Ukraine)", + "Biography"], + ["Hasidim", + "Berdychiv", + "Biography"], + ["Rabbis", + "Berdychiv", + "Biography"]], + "source": "amazon.com books", + "workcode": "6475035", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.", + "weight": "1.19 pounds", + "pages": "224 " +}, +"268093020": { + "books_id": "268093020", + "title": "The Literature of the Jewish People in the Time of Jesus", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schürer, Emil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schürer, Emil", + "fl": "Emil Schürer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080520363X", + "isbn": { + "0": "080520363X", + "2": "9780805203639" + }, + "asin": "080520363X", + "ean": ["080520363X"], + "publication": "Schocken (1973), 402 pages", + "date": "1973", + "summary": "The Literature of the Jewish People in the Time of Jesus by Emil Schürer (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.33"], + "wording": ["Antiquities of ancient countries", + "Geography & travel", + "Geography of and travel in ancient world", + "History & geography", + "Palestine: Israel, Jordan, and West Bank to 70"] + }, + "lcc": { + "code": "DS122 .S3913" + }, + "subject": [["Apocryphal books (Old Testament)", + "Criticism, interpretation, etc"], + ["Greek literature", + "History and criticism"], + ["Judaism and literature", + "Greece"]], + "source": "amazon.com books", + "workcode": "6079252", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "402 p.", + "weight": "0.95 pounds", + "pages": "402 " +}, +"268093032": { + "books_id": "268093032", + "title": "There Shall Be No Needy: Pursuing Social Justice through Jewish Law and Tradition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobs, Rabbi Jill", + "primaryauthorrole": "Author", + "secondaryauthor": "Greer, Simon|Dorff PhD, Rabbi Elliot N.", + "secondaryauthorroles": "Preface|Foreword", + "authors": [{ + "lf": "Jacobs, Rabbi Jill", + "fl": "Rabbi Jill Jacobs", + "role": "Author" + }, + { + "lf": "Greer, Simon", + "fl": "Simon Greer", + "role": "Preface" + }, + { + "lf": "Dorff PhD, Rabbi Elliot N.", + "fl": "Rabbi Elliot N. Dorff PhD", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580234259", + "isbn": { + "0": "1580234259", + "2": "9781580234252" + }, + "asin": "1580234259", + "ean": ["1580234259"], + "publication": "Jewish Lights (2010), Edition: 1, 288 pages", + "date": "2010", + "summary": "There Shall Be No Needy: Pursuing Social Justice through Jewish Law and Tradition by Rabbi Jill Jacobs (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM645.J8 J33" + }, + "source": "amazon.com books", + "workcode": "7954634", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 9 inches", + "height": "9 inches", + "thickness": "0.72047244021 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.72047244021 inches", + "weight": "0.00220462262 pounds", + "pages": "288 " +}, +"268093052": { + "books_id": "268093052", + "title": "Elusive Prophet: Ahad Ha'am and the Origins of Zionism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Zipperstein, Steven J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zipperstein, Steven J.", + "fl": "Steven J. Zipperstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520081110", + "isbn": { + "0": "0520081110", + "2": "9780520081116" + }, + "asin": "0520081110", + "ean": ["0520081110"], + "publication": "University of California Press (1993), Edition: 1, 386 pages", + "date": "1993", + "summary": "Elusive Prophet: Ahad Ha'am and the Origins of Zionism by Steven J. Zipperstein (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54095694092"], + "wording": ["Asia", + "Biography And History", + "Middle East", + "Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences", + "The Levant", + "Zionism"] + }, + "lcc": { + "code": "DS151.G5 Z56" + }, + "subject": [["Zionism", + "Philosophy"], + ["Zionists", + "Biography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1599", + "66879", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "2074853", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "386 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.5 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1.5 inches", + "weight": "1.85 pounds", + "pages": "386 " +}, +"268093064": { + "books_id": "268093064", + "title": "The Terrible Secret: Suppression of the Truth About Hitler's \"Final Solution\"", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Laqueur, Walter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Laqueur, Walter", + "fl": "Walter Laqueur", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1412849411", + "isbn": { + "0": "1412849411", + "2": "9781412849418" + }, + "asin": "1412849411", + "ean": ["1412849411"], + "publication": "Routledge (2012), Edition: 1, 283 pages", + "date": "2012", + "summary": "The Terrible Secret: Suppression of the Truth About Hitler's \"Final Solution\" by Walter Laqueur (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D810.J4 L278" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Censorship"]], + "source": "amazon.com books", + "workcode": "249464", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "283 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.64 inches", + "length": "5.43 inches", + "dimensions": "8.5 x 5.43 x 0.64 inches", + "weight": "0.7495716908 pounds", + "pages": "283 " +}, +"268093109": { + "books_id": "268093109", + "title": "Contemporary Halakhic Problems, Vol. 1 (Library of Jewish Law and Ethics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bleich, J. David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bleich, J. David", + "fl": "J. David Bleich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870684507", + "isbn": { + "0": "0870684507", + "2": "9780870684500" + }, + "asin": "0870684507", + "ean": ["0870684507"], + "publication": "KTAV Publishing House (1976), 406 pages", + "date": "1976", + "summary": "Contemporary Halakhic Problems, Vol. 1 (Library of Jewish Law and Ethics) by J. David Bleich (1976)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.18"], + "wording": ["Halachah", + "Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520.3 .B5" + }, + "source": "Amazon.com", + "workcode": "21350533", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093123": { + "books_id": "268093123", + "title": "Seasons of the Soul: Religious, Historical, and Philosophical Perspectives on the Jewish Year and Its Milestones : Collected from the Pages of the Jewish Observer (Artscroll Judaiscope Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Agudath Israel of America", + "primaryauthorrole": "Author", + "secondaryauthor": "Wolpin, Nisson", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Agudath Israel of America", + "fl": "Agudath Israel of America", + "role": "Author" + }, + { + "lf": "Wolpin, Nisson", + "fl": "Nisson Wolpin", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899068529", + "isbn": { + "0": "0899068529", + "2": "9780899068527" + }, + "asin": "0899068529", + "ean": ["0899068529"], + "publication": "Mesorah Pubns Ltd (1986), Edition: First Edition, 288 pages", + "date": "1986", + "summary": "Seasons of the Soul: Religious, Historical, and Philosophical Perspectives on the Jewish Year and Its Milestones : Collected from the Pages of the Jewish Observer (Artscroll Judaiscope Series) by Agudath Israel of America (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM745 S4" + }, + "source": "amazon.com books", + "workcode": "3186832", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.", + "thickness": "6 inches", + "length": "9 inches", + "dimensions": "9 x 6 inches", + "weight": "0.625 pounds", + "pages": "288 " +}, +"268093179": { + "books_id": "268093179", + "title": "Modern Jewish Preaching - Based Upon Alumni Lectures Given At Hebrew Union College, March 1941", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Freehof, Solomon B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Freehof, Solomon B.", + "fl": "Solomon B. Freehof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B004JQ80OO", + "publication": "Bloch Publishing Co. (1941)", + "date": "1941", + "summary": "Modern Jewish Preaching - Based Upon Alumni Lectures Given At Hebrew Union College, March 1941 by Solomon B. Freehof (1941)", + "lcc": [], + "source": "amazon.com books", + "workcode": "12729835", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093182": { + "books_id": "268093182", + "title": "A treasury of Chassidic tales on the festivals: A collection of inspirational Chassidic stories relevant to the festivals = [Sipure H\u0323asidim \u02bbal ha-mo\u02bbadim] (ArtScroll Judaica series)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Ze\u1e7fin, Shelomoh Yosef", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ze\u1e7fin, Shelomoh Yosef", + "fl": "Shelomoh Yosef Ze\u1e7fin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899069134", + "isbn": { + "0": "0899069134", + "2": "9780899069135" + }, + "asin": "0899069134", + "ean": ["0899069134"], + "publication": "Mesorah Publications in conjunction with Hillel Press, Jerusalem (1981), Edition: First Edition, 318 pages", + "date": "1981", + "summary": "A treasury of Chassidic tales on the festivals: A collection of inspirational Chassidic stories relevant to the festivals = [Sipure H\u0323asidim \u02bbal ha-mo\u02bbadim] (ArtScroll Judaica series) by Shelomoh Yosef Ze\u1e7fin (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM532 .S53713" + }, + "source": "amazon.com books", + "workcode": "25449914", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "318 p.", + "weight": "1.23 pounds", + "pages": "318 " +}, +"268093183": { + "books_id": "268093183", + "title": "Jewish Ceremonial Art: A Guide to the Appreciation of the Art Objects Used in Synagogue and Home", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kayser Stephen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kayser Stephen", + "fl": "Kayser Stephen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GWGDFS", + "publication": "THE JEWISH PUBL SOCIETY (1955), 168 pages", + "date": "1955", + "summary": "Jewish Ceremonial Art: A Guide to the Appreciation of the Art Objects Used in Synagogue and Home by Kayser Stephen (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["704.94896"], + "wording": ["Arts", + "Arts & recreation", + "Iconography", + "Non-Christian religious art", + "Religious art", + "Special topics in fine and decorative arts", + "Specific subjects"] + }, + "lcc": { + "code": "N5020.N4 J38" + }, + "source": "amazon.com books", + "workcode": "5861122", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "168 p.", + "weight": "3 pounds", + "pages": "168 " +}, +"268093186": { + "books_id": "268093186", + "title": "While Six Million Died: A Chronicle of American Apathy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Morse, Arthur D.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Morse, Arthur D.", + "fl": "Arthur D. Morse", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780879518363", + "isbn": ["9780879518363", + "0879518367"], + "asin": "0879518367", + "ean": ["0879518367"], + "publication": "Abrams Press (1998), Edition: 1, 420 pages", + "date": "1998", + "summary": "While Six Million Died: A Chronicle of American Apathy by Arthur D. Morse (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.531"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 M59" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Jews", + "Germany", + "History"], + "3": ["Jews", + "Germany", + "History", + "1933-1945"], + "4": ["United States", + "Emigration and immigration"], + "6": ["World War, 1939-1945", + "Jews"], + "8": ["World War, 1939-1945", + "Jews", + "Rescue"], + "9": ["World War, 1939-1945", + "Rescue"], + "10": ["World War, 1939-1945", + "United States"], + "12": ["World war, 1939-1945", + "United States"] + }, + "originaltitle": "While Six Million Died: A Chronicle of American Apathy", + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "216417", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "420 p.; 7.99 inches", + "height": "7.9901415 inches", + "thickness": "1.8499963 inches", + "length": "5.3598318 inches", + "dimensions": "7.9901415 x 5.3598318 x 1.8499963 inches", + "weight": "1.04940036712 pounds", + "pages": "420 " +}, +"268093201": { + "books_id": "268093201", + "title": "The Hebrew Book: An Historical Survey.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Posner, Raphael And Israel Ta-Shema, Eds.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Posner, Raphael And Israel Ta-Shema, Eds.", + "fl": "Raphael And Israel Ta-Shema Posner, Eds.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814805973", + "isbn": { + "0": "0814805973", + "2": "9780814805978" + }, + "asin": "0814805973", + "ean": ["0814805973"], + "publication": "Leon Amiel (1975), Edition: First Edition, 225 pages", + "date": "1975", + "summary": "The Hebrew Book: An Historical Survey. by Raphael And Israel Ta-Shema Posner, Eds. (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["686.2"], + "wording": ["Manufacture for specific uses", + "Printing", + "Printing and related activities", + "Technology"] + }, + "lcc": { + "code": "Z228.H4 H4" + }, + "source": "amazon.com books", + "workcode": "1982403", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "225 p.", + "weight": "2.95 pounds", + "pages": "225 " +}, +"268093208": { + "books_id": "268093208", + "title": "Elvis in Jerusalem Post-Zionism & the Americanization of Israel (Paperback, 2003) 2ND EDITION", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B003TRQLOK", + "publication": "Owl Boks,2003", + "summary": "Elvis in Jerusalem Post-Zionism & the Americanization of Israel (Paperback, 2003) 2ND EDITION by unknown author", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591821", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268093253": { + "books_id": "268093253", + "title": "The political thought of Hannah Arendt", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Canovan, Margaret.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Canovan, Margaret.", + "fl": "Margaret. Canovan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0151728151", + "isbn": { + "0": "0151728151", + "2": "9780151728152" + }, + "asin": "0151728151", + "ean": ["0151728151"], + "publication": "Harcourt Brace Jovanovich (1974), Edition: First Edition, 136 pages", + "date": "1974", + "summary": "The political thought of Hannah Arendt by Margaret. Canovan (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "15743664", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "136 p.", + "height": "8.3 inches", + "thickness": "0.8 inches", + "length": "5.7 inches", + "dimensions": "8.3 x 5.7 x 0.8 inches", + "weight": "1 pound", + "pages": "136 " +}, +"268093256": { + "books_id": "268093256", + "title": "The gentleman and the Jew", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DSEBW", + "publication": "Knopf (1950), Edition: First Edition, 325 pages", + "date": "1950", + "summary": "The gentleman and the Jew by Maurice Samuel (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.S243 A3" + }, + "subject": [["Jews", + "United States", + "Biography"], + ["Samuel, Maurice, 1895-1972"], + ["Zionists", + "United States", + "Biography"]], + "source": "amazon.com books", + "workcode": "4226755", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "325 p.", + "weight": "1.15 pounds", + "pages": "325 " +}, +"268093260": { + "books_id": "268093260", + "title": "Elvis in Jerusalem: Post-Zionism and the Americanization of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Segev, Tom", + "primaryauthorrole": "Author", + "secondaryauthor": "Watzman, Haim", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Segev, Tom", + "fl": "Tom Segev", + "role": "Author" + }, + { + "lf": "Watzman, Haim", + "fl": "Haim Watzman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "3886807665", + "isbn": { + "0": "3886807665", + "2": "9783886807666" + }, + "asin": "0805070206", + "ean": ["0805070206"], + "publication": "Metropolitan Books (2002), Edition: First Edition, 192 pages", + "date": "2002", + "summary": "Elvis in Jerusalem: Post-Zionism and the Americanization of Israel by Tom Segev (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149.I75 S4413" + }, + "subject": { + "0": ["Israel", + "Civilization"], + "2": ["National characteristics, Israeli"], + "4": ["Post-Zionism"], + "6": ["Zionism", + "Israel", + "History"], + "7": ["Zionism", + "Israel", + "History", + "20th century"] + }, + "source": "amazon.com books", + "workcode": "708364", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 1 inches", + "weight": "0.7 pounds", + "pages": "192 " +}, +"268093279": { + "books_id": "268093279", + "title": "Jewish Life in the Middle Ages: Illuminated Hebrew Manuscripts of the Thirteenth to the Sixteenth Centuries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Metzger, Thérèse", + "primaryauthorrole": "Author", + "secondaryauthor": "Metzger, Mendel", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Metzger, Thérèse", + "fl": "Thérèse Metzger", + "role": "Author" + }, + { + "lf": "Metzger, Mendel", + "fl": "Mendel Metzger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0890098395", + "isbn": { + "0": "0890098395", + "2": "9780890098394" + }, + "asin": "0890098395", + "ean": ["0890098395"], + "publication": "Chartwell Books, Inc. (1988), Edition: First Edition, 318 pages", + "date": "1988", + "summary": "Jewish Life in the Middle Ages: Illuminated Hebrew Manuscripts of the Thirteenth to the Sixteenth Centuries by Thérèse Metzger (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112 .M42713" + }, + "subject": [["Illumination of books and manuscripts, Jewish"], + ["Illumination of books and manuscripts, Medieval"], + ["Jews", + "Pictorial works"], + ["Jews in art"]], + "source": "amazon.com books", + "workcode": "99506", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "318 p.", + "height": "11 inches", + "thickness": "1.2 inches", + "length": "9.8 inches", + "dimensions": "11 x 9.8 x 1.2 inches", + "weight": "3.65 pounds", + "pages": "318 " +}, +"268093280": { + "books_id": "268093280", + "title": "The Festivals in Halachah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zevin Shlomo Yosef", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zevin Shlomo Yosef", + "fl": "Zevin Shlomo Yosef", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899069061", + "isbn": { + "0": "0899069061", + "2": "9780899069067" + }, + "asin": "0899069061", + "ean": ["0899069061"], + "publication": "Mesorah Pubns Ltd (1981), Edition: First Edition", + "date": "1981", + "summary": "The Festivals in Halachah by Zevin Shlomo Yosef (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.43"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690 .Z4513" + }, + "source": "amazon.com books", + "workcode": "25449939", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.74 pounds" +}, +"268093285": { + "books_id": "268093285", + "title": "In the thicket", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Simon, Solomon", + "authors": [{ + "lf": "Simon, Solomon", + "fl": "Solomon Simon" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish Publication Society of America, 1963.", + "date": "1963", + "summary": "In the thicket by Solomon Simon (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["Fic"] + }, + "lcc": { + "code": "PZ3.S5963In" + }, + "subject": [["Jews Fiction"]], + "source": "NEOS Consortium (Edmonton, AB)", + "lccn": "63013256", + "workcode": "5644101", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "273 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "273 " +}, +"268093287": { + "books_id": "268093287", + "title": "Certain people of the Book", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Union of Hebrew Congregations, 1977, c1955", + "date": "1955", + "summary": "Certain people of the Book by Maurice Samuel (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.92"], + "wording": ["Collected biography", + "Geography, history, chronology, persons of Bible lands in Bible times", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "\u202aM110A SAM" + }, + "subject": [["Adult education Books for"]], + "source": "Israel Union List", + "workcode": "2910171", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "363 " +}, +"268093330": { + "books_id": "268093330", + "title": "The Haggadah Treasury: A seder companion with insights and interpretations for inspiration and retelling (ArtScroll mesorah series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Scherman, Rabbi Nosson", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Scherman, Rabbi Nosson", + "fl": "Rabbi Nosson Scherman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899062008", + "isbn": { + "0": "0899062008", + "2": "9780899062006" + }, + "asin": "0899062008", + "ean": ["0899062008"], + "publication": "Mesorah Pubns Ltd (1986), Edition: 2nd, 199 pages", + "date": "1986", + "summary": "The Haggadah Treasury: A seder companion with insights and interpretations for inspiration and retelling (ArtScroll mesorah series) by Rabbi Nosson Scherman (1986)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.P4 Z722" + }, + "source": "Amazon.com", + "workcode": "4772042", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "0.8 inches", + "length": "6.1 inches", + "dimensions": "9.3 x 6.1 x 0.8 inches", + "weight": "1.1 pounds", + "pages": "199 " +}, +"268093334": { + "books_id": "268093334", + "title": "The professor and the fossil; some observations on Arnold J. Toynbee's A study of history", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Samuel, Maurice", + "authors": [{ + "lf": "Samuel, Maurice", + "fl": "Maurice Samuel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Knopf, 1956.", + "date": "1956", + "summary": "The professor and the fossil; some observations on Arnold J. Toynbee's A study of history by Maurice Samuel (1956)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["901"], + "wording": ["History", + "History & geography", + "Philosophy and theory of history"] + }, + "lcc": { + "code": "CB63.T68S3" + }, + "subject": [["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Toynbee, Arnold Joseph, 1889-1975"]], + "source": "New Jersey State Library (Trenton, NJ)", + "oclc": "ocm00387777", + "lccn": "56-008929 /", + "workcode": "3459690", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "268 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "268 " +}, +"268093340": { + "books_id": "268093340", + "title": "Jewish Spirituality: From the Bible Through the Middle Ages (World Spirituality)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Green, Arthur", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Green, Arthur", + "fl": "Arthur Green", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824508912", + "isbn": { + "0": "0824508912", + "2": "9780824508913" + }, + "asin": "0824508912", + "ean": ["0824508912"], + "publication": "Herder & Herder (1989), 488 pages", + "date": "1989", + "summary": "Jewish Spirituality: From the Bible Through the Middle Ages (World Spirituality) by Arthur Green (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .J487" + }, + "series": ["World Spirituality: An Encyclopedic History of the Religious Quest"], + "genre": ["Nonfiction", + "History", + "Literature Studies and Criticism", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "53740", + "1944"], + "source": "amazon.com books", + "workcode": "1295295", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "488 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.23 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.23 inches", + "weight": "1.55646356972 pounds", + "pages": "488 " +}, +"268093369": { + "books_id": "268093369", + "title": "Contemporary synagogue art", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kampf, Avram", + "authors": [{ + "lf": "Kampf, Avram", + "fl": "Avram Kampf" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Union of American Hebrew Congregations [1966]", + "date": "1966", + "summary": "Contemporary synagogue art by Avram Kampf (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["704.94896"], + "wording": ["Arts", + "Arts & recreation", + "Iconography", + "Non-Christian religious art", + "Religious art", + "Special topics in fine and decorative arts", + "Specific subjects"] + }, + "lcc": { + "code": "N7415.K35" + }, + "subject": [["Synagogue architecture United States"], + ["Synagogue art, American"]], + "source": "NEOS Consortium (Edmonton, AB)", + "lccn": "65025292", + "workcode": "3262232", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "vii, 276 p.; 29 cm", + "height": "29 cm", + "dimensions": "29 cm", + "pages": "vii; 276 " +}, +"268093377": { + "books_id": "268093377", + "title": "The Kaddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pool, David de Sola", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pool, David de Sola", + "fl": "David de Sola Pool", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B006491DN4", + "publication": "University of California Libraries (1909), 156 pages", + "date": "1909", + "summary": "The Kaddish by David de Sola Pool (1909)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM670.K3 P6" + }, + "subject": [["Jews. Liturgy and ritual. Kaddish"], + ["Kaddish"]], + "source": "amazon.com books", + "workcode": "3096684", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "156 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.39 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.39 inches", + "pages": "156 " +}, +"268093378": { + "books_id": "268093378", + "title": "The Kaddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pool, David de Sola", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pool, David de Sola", + "fl": "David de Sola Pool", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B006491DN4", + "publication": "University of California Libraries (1909), 156 pages", + "date": "1909", + "summary": "The Kaddish by David de Sola Pool (1909)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM670.K3 P6" + }, + "subject": [["Jews. Liturgy and ritual. Kaddish"], + ["Kaddish"]], + "source": "amazon.com books", + "workcode": "3096684", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "156 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.39 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.39 inches", + "pages": "156 " +}, +"268093401": { + "books_id": "268093401", + "title": "Between East and West;: A history of the Jews of North Africa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chouraqui Andre N.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chouraqui Andre N.", + "fl": "Chouraqui Andre N.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781199346162", + "isbn": ["9781199346162", + "1199346160"], + "asin": "B0006BV0WA", + "ean": ["1199346160"], + "publication": "THE JEWISH PUBLICATION SOCIETY OF AMERICA (1968), Edition: First Edition, 376 pages", + "date": "1968", + "summary": "Between East and West;: A history of the Jews of North Africa by Chouraqui Andre N. (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["301.451"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.A25 C383" + }, + "series": ["History of the Jews in North Africa"], + "genre": ["Nonfiction", + "Anthropology", + "History", + "Sociology"], + "genre_id": ["20275895", + "5022", + "1599", + "5686"], + "source": "amazon.com books", + "workcode": "2466894", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093427": { + "books_id": "268093427", + "title": "Sabbath Sermons", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Abraham", + "primaryauthorrole": "Author", + "secondaryauthor": "Pearl, Chaim|Alex Tobias", + "secondaryauthorroles": "Editor|Editor", + "authors": [{ + "lf": "Cohen, Abraham", + "fl": "Abraham Cohen", + "role": "Author" + }, + { + "lf": "Pearl, Chaim", + "fl": "Chaim Pearl", + "role": "Editor" + }, + { + "lf": "Alex Tobias", + "fl": "Alex Tobias", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007AL7IM", + "publication": "Soncino Press (1975), Edition: First Edition", + "date": "1975", + "summary": "Sabbath Sermons by Abraham Cohen (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "13175199", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093434": { + "books_id": "268093434", + "title": "A feast of history;: Passover through the ages as a key to Jewish experience", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Raphael, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raphael, Chaim", + "fl": "Chaim Raphael", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671211757", + "isbn": { + "0": "0671211757", + "2": "9780671211752" + }, + "asin": "0671211757", + "ean": ["0671211757"], + "publication": "Simon and Schuster (1972), 250 pages", + "date": "1972", + "summary": "A feast of history;: Passover through the ages as a key to Jewish experience by Chaim Raphael (1972)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.P4 Z884" + }, + "subject": { + "0": ["Haggadah", + "Illustrations"], + "1": ["Haggadot", + "History and criticism"], + "2": ["Haggadot", + "Texts"], + "4": ["Haggadot", + "Texts", + "History and criticism"], + "5": ["Illumination of books and manuscripts, Jewish"], + "7": ["Judaism", + "History and criticism"], + "8": ["Judaism", + "Liturgy", + "Texts"], + "9": ["Judaism", + "Liturgy", + "Texts", + "History and criticism"], + "10": ["Judaism", + "Texts"], + "11": ["Seder", + "History and criticism"], + "12": ["Seder", + "Liturgy", + "Texts"], + "13": ["Seder", + "Liturgy", + "Texts", + "History and criticism"], + "14": ["Seder", + "Texts"] + }, + "source": "Amazon.com", + "workcode": "377014", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.7 inches", + "thickness": "1 inch", + "length": "7.6 inches", + "dimensions": "9.7 x 7.6 x 1 inches", + "weight": "2.05 pounds", + "pages": "250 " +}, +"268093485": { + "books_id": "268093485", + "title": "The synagogues of New York's Lower East Side", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Fine, Jo Renee", + "secondaryauthor": "Wolfe, Gerard R.", + "authors": [{ + "lf": "Fine, Jo Renee", + "fl": "Jo Renee Fine" + }, + { + "lf": "Wolfe, Gerard R.", + "fl": "Gerard R. Wolfe" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814725597", + "isbn": { + "0": "0814725597", + "2": "9780814725597" + }, + "publication": "New York : Washington Mews Books, 1978.", + "date": "1978", + "summary": "The synagogues of New York's Lower East Side by Jo Renee Fine (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6/5/097471", + "296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM225.N49F56" + }, + "subject": [["Jews HIstory"], + ["Jews History"], + ["Jews history"], + ["Judaism New York (State) New York"], + ["Lower East Side (New York, N.Y.) History"], + ["Synagogues New York (State) New York"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "75015126", + "workcode": "2653624", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "x, 172 p.; 29 cm", + "height": "29 cm", + "dimensions": "29 cm", + "pages": "x; 172 " +}, +"268093509": { + "books_id": "268093509", + "title": "The wisdom in the Hebrew alphabet : the sacred letters as a guide to Jewish deed and thought", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Munk, Michael L.", + "authors": [{ + "lf": "Munk, Michael L.", + "fl": "Michael L. Munk" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899061931", + "isbn": { + "0": "0899061931", + "2": "9780899061931" + }, + "publication": "New York : Mesorah Publications, c1983.", + "date": "1983", + "summary": "The wisdom in the Hebrew alphabet : the sacred letters as a guide to Jewish deed and thought by Michael L. Munk (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "\u202aM100D M86" + }, + "subject": [["Hebrew Language Alphabet"], + ["Hebrew language Alphabet"], + ["JUDAISM"], + ["Judaism"], + ["Signs and symbols, Jewish"], + ["judaism"]], + "source": "Israel Union List", + "lccn": "83168444", + "workcode": "67492", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 240 p.; 23 cm", + "height": "23 cm", + "thickness": "1.2 inches", + "length": "7.2 inches", + "dimensions": "23 x 7.2 x 1.2 cm", + "weight": "1.6 pounds", + "pages": "xi; 240 " +}, +"268093513": { + "books_id": "268093513", + "title": "The Jewish world: History and culture of the Jewish people", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kedourie, Elie (Editor)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kedourie, Elie (Editor)", + "fl": "Elie (Editor) Kedourie", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081091154X", + "isbn": { + "0": "081091154X", + "2": "9780810911543" + }, + "asin": "081091154X", + "ean": ["081091154X"], + "publication": "H. N. Abrams (1979), Edition: First Edition, 328 pages", + "date": "1979", + "summary": "The Jewish world: History and culture of the Jewish people by Elie (Editor) Kedourie (1979)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS117.J43" + }, + "subject": { + "0": ["Jews", + "Civilization"], + "2": ["Jews", + "History"], + "4": ["Jews", + "history"], + "6": ["Judaism", + "History"], + "8": ["Judaism", + "history"] + }, + "source": "Amazon.com", + "workcode": "1727223", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "12 inches", + "thickness": "1.5 inches", + "length": "9.1 inches", + "dimensions": "12 x 9.1 x 1.5 inches", + "weight": "4.3 pounds", + "pages": "328 " +}, +"268093530": { + "books_id": "268093530", + "title": "Jewish Law and Decision-Making: A Study Through Time", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schreiber, Aaron M", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schreiber, Aaron M", + "fl": "Aaron M Schreiber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0877221200", + "isbn": { + "0": "0877221200", + "2": "9780877221203" + }, + "asin": "0877221200", + "ean": ["0877221200"], + "publication": "Temple University Press (1979), Edition: First Edition, 440 pages", + "date": "1979", + "summary": "Jewish Law and Decision-Making: A Study Through Time by Aaron M Schreiber (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["345.002"], + "wording": ["Criminal Law", + "Law", + "Social sciences", + "Standard subdivisions"] + }, + "lcc": { + "code": "KBM3800 .S37" + }, + "source": "amazon.com books", + "workcode": "9048184", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "440 p.", + "pages": "440 " +}, +"268093547": { + "books_id": "268093547", + "title": "Sukkah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kehati, Pinhas", + "authors": [{ + "lf": "Kehati, Pinhas", + "fl": "Pinhas Kehati" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem : Dept. for Torah Education and Culture in the Diaspora of the World Zionist Organization, 1978", + "date": "1978", + "summary": "Sukkah by Pinhas Kehati (1978)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "BM506.S93" + }, + "source": "Israel Union List", + "workcode": "32591858", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "134 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "134 " +}, +"268093555": { + "books_id": "268093555", + "title": "Jewish Theology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kohler, Kaufmann", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kohler, Kaufmann", + "fl": "Kaufmann Kohler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B004TRXOTY", + "publication": "(2011), 514 pages", + "date": "2011", + "summary": "Jewish Theology by Kaufmann Kohler (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM600 .K65" + }, + "subject": [["Judaism", + "Doctrines"]], + "source": "amazon.com books", + "workcode": "1670129", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268093587": { + "books_id": "268093587", + "title": "The MACMILLAN ATLAS OF THE HOLOCAUST", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gilbert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gilbert", + "fl": "Gilbert", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780025433809", + "isbn": ["9780025433809", + "0025433806"], + "asin": "0025433806", + "ean": ["0025433806"], + "publication": "Scribner (1982), Edition: First Edition, 256 pages", + "date": "1982", + "summary": "The MACMILLAN ATLAS OF THE HOLOCAUST by Gilbert (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "G1797.E29 G58" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)"], + "2": ["Holocaust, Jewish (1939-1945)", + "Maps"] + }, + "source": "amazon.com books", + "workcode": "208990", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.", + "weight": "1 pound", + "pages": "256 " +}, +"268093613": { + "books_id": "268093613", + "title": "The Golden Age Shtetl: A New History of Jewish Life in East Europe", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Petrovsky-Shtern, Yohanan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Petrovsky-Shtern, Yohanan", + "fl": "Yohanan Petrovsky-Shtern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691160740", + "isbn": { + "0": "0691160740", + "2": "9780691160740" + }, + "asin": "0691160740", + "ean": ["0691160740"], + "publication": "Princeton University Press (2014), Edition: First Edition (US) First Printing, 448 pages", + "date": "2014", + "summary": "The Golden Age Shtetl: A New History of Jewish Life in East Europe by Yohanan Petrovsky-Shtern (2014)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.0004924"], + "wording": ["History & geography", + "History of Europe", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.E82 P48" + }, + "awards": ["National Jewish Book Award", + "PROSE Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books, music and movies", + "workcode": "14886995", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093626": { + "books_id": "268093626", + "title": "The Palm Tree of Deborah", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cordovero, Moses", + "primaryauthorrole": "Author", + "secondaryauthor": "Jacobs, Louis|Jacobs, Louis", + "secondaryauthorroles": "Translator|Introduction", + "authors": [{ + "lf": "Cordovero, Moses", + "fl": "Moses Cordovero", + "role": "Author" + }, + { + "lf": "Jacobs, Louis", + "fl": "Louis Jacobs", + "role": "Translator" + }, + { + "lf": "Jacobs, Louis", + "fl": "Louis Jacobs", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0853030766", + "isbn": { + "0": "0853030766", + "2": "9780853030768" + }, + "asin": "0853030766", + "ean": ["0853030766"], + "publication": "Vallentine, Mitchell (1960), Edition: 1st, 134 pages", + "date": "1960", + "summary": "The Palm Tree of Deborah by Moses Cordovero (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1287.C63 T613" + }, + "subject": { + "0": ["Jewish ethics", + "Early works to 1800"], + "2": ["Wills, ethical", + "Early works to 1800"] + }, + "source": "amazon.com books", + "workcode": "1200981", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "133 " +}, +"268093629": { + "books_id": "268093629", + "title": "The Sabbath service : an exposition and analysis of its structure, contents, language and ideas", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jacobson, B. S.", + "authors": [{ + "lf": "Jacobson, B. S.", + "fl": "B. S. Jacobson" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel Aviv : \"Sinai\" Pub., 1981.", + "date": "1981", + "summary": "The Sabbath service : an exposition and analysis of its structure, contents, language and ideas by B. S. Jacobson (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "BM675.S3" + }, + "source": "Boston College", + "workcode": "6057336", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxv, 454 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xxv; 454 " +}, +"268093703": { + "books_id": "268093703", + "title": "Chicago and its Jews : a cultural history", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bregstone, Philip Pollack", + "authors": [{ + "lf": "Bregstone, Philip Pollack", + "fl": "Philip Pollack Bregstone" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[Chicago] : Priv. pub., [c1933].", + "date": "1933", + "summary": "Chicago and its Jews : a cultural history by Philip Pollack Bregstone (1933)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["D5(73) BRE c", + "73"], + "wording": ["Arts & recreation", + "Sculpture, ceramics & metalwork"] + }, + "lcc": { + "code": "F548.J5 B73" + }, + "subject": [["Jews Illinois Chicago"], + ["Jews Illinois Chicago Charities"]], + "source": "Israel Union List", + "lccn": "33017981", + "workcode": "6094313", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xx, 423 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "xx; 423 " +}, +"268093779": { + "books_id": "268093779", + "title": "Berakhot", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kehati, Pinhas", + "secondaryauthor": "Oschry, Leonard|Kahana, Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga", + "secondaryauthorroles": "Translator|", + "authors": [{ + "lf": "Kehati, Pinhas", + "fl": "Pinhas Kehati" + }, + { + "lf": "Oschry, Leonard", + "fl": "Leonard Oschry", + "role": "Translator" + }, + { + "lf": "Kahana, Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga", + "fl": "Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga Kahana" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem : Department for Toah Education and Culture in the Diaspora of the World Zionist Organization, 5737 1977.", + "date": "5737", + "summary": "Berakhot by Pinhas Kehati (5737)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.123"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion", + "Talmud"] + }, + "lcc": { + "code": "BM506.B6E5 1977" + }, + "source": "Israel Union List", + "workcode": "4574445", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "158 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "158 " +}, +"268093793": { + "books_id": "268093793", + "title": "Judaism, Law and Ethics. Essays by the Late Chief Rabbi Dr Isaac Herzog", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Herzog, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Herzog, Isaac", + "fl": "Isaac Herzog", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007B6SNK", + "publication": "Soncino Press (1974), 227 pages", + "date": "1974", + "summary": "Judaism, Law and Ethics. Essays by the Late Chief Rabbi Dr Isaac Herzog by Isaac Herzog (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon uk books", + "workcode": "32591877", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268093814": { + "books_id": "268093814", + "title": "Kaddish : women's voices", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Smart, Michal", + "secondaryauthor": "Ashkenas, Barbara", + "authors": [{ + "lf": "Smart, Michal", + "fl": "Michal Smart" + }, + { + "lf": "Ashkenas, Barbara", + "fl": "Barbara Ashkenas" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9655241505", + "isbn": { + "0": "9655241505", + "2": "9789655241501" + }, + "publication": "Chicago : Urim Publications, 2013.", + "date": "2013", + "summary": "Kaddish : women's voices by Michal Smart (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM670.K3" + }, + "subject": [["Feminism Religious aspects Judaism"], + ["Jewish mourning customs"], + ["WOMEN IN JUDAISM"], + ["Women in Judaism"]], + "awards": ["National Jewish Book Award", + "Skipping Stones Honor Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1240", + "1247", + "1944", + "6880"], + "source": "Texas Christian University (Fort Worth, TX)", + "workcode": "14757687", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1", + "volumes": "1", + "pages": "273 " +}, +"268093825": { + "books_id": "268093825", + "title": "The world of Isaac Lamdan, pioneer, poet", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Umen, Samuel", + "authors": [{ + "lf": "Umen, Samuel", + "fl": "Samuel Umen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Philosophical Library [1961]", + "date": "1961", + "summary": "The world of Isaac Lamdan, pioneer, poet by Samuel Umen (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PJ5053.L28Z92" + }, + "subject": [["Lamdan, Isaac, 1899-1954"]], + "source": "Boston College", + "lccn": "61012624", + "workcode": "32591879", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "103 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "103 " +}, +"268093830": { + "books_id": "268093830", + "title": "The essence of Judaism.", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baeck, Leo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baeck, Leo", + "fl": "Leo Baeck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000FCZFUI", + "publication": "Schocken Books (1961), Edition: 6th printing 1974, 287 pages", + "date": "1961", + "summary": "The essence of Judaism. by Leo Baeck (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560 .B32" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "1187859", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "287 p.", + "weight": "0.65 pounds", + "pages": "287 " +}, +"268093881": { + "books_id": "268093881", + "title": "The guide for the perplexed by Moses Maimonides", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Maimonides, Moses", + "secondaryauthor": "Friedländer, M.", + "authors": [{ + "lf": "Maimonides, Moses", + "fl": "Moses Maimonides" + }, + { + "lf": "Friedländer, M.", + "fl": "M. Friedländer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : Routledge, 1928.", + "date": "1928", + "summary": "The guide for the perplexed by Moses Maimonides by Moses Maimonides (1928)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "BM 554 A55 F7" + }, + "subject": [["JUDAISM"], + ["Jewish Philosophy"], + ["Jewish philosophy"], + ["Judaism"], + ["Philosophy, Medieval"], + ["Philosophy, medieval"], + ["judaism"]], + "originaltitle": "\u062f\u0644\u0627\u0644\u0629 \u0627\u0644\u062d\u0627\u0626\u0631\u064a\u0646", + "awards": ["Philip Ward's Lifetime Reading Plan", + "The 100 Most Influential Books Ever Written: The History of Thought from Ancient Times to Today"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "Israel Union List", + "workcode": "995084", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "lix; 414 " +}, +"268093898": { + "books_id": "268093898", + "title": "The Pharisees and other essays", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Baeck, Leo", + "authors": [{ + "lf": "Baeck, Leo", + "fl": "Leo Baeck" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080520122X", + "isbn": { + "0": "080520122X", + "2": "9780805201222" + }, + "publication": "New York : Schocken Books, 1966.", + "date": "1966", + "summary": "The Pharisees and other essays by Leo Baeck (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296.04"], + "wording": ["Essays", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM175.P4 B33" + }, + "subject": { + "0": ["Jews"], + "1": ["Judaism"], + "3": ["Pharisees"], + "5": ["judaism"] + }, + "workcode": "2155227", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268093900": { + "books_id": "268093900", + "title": "The Documentary Hypothesis and the Composition of the Pentateuch: Eight Lectures", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cassuto, U.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cassuto, U.", + "fl": "U. Cassuto", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652234796", + "isbn": { + "0": "9652234796", + "2": "9789652234797" + }, + "asin": "9652234796", + "ean": ["9652234796"], + "publication": "Magnes Pr (1983), Edition: 4th, 117 pages", + "date": "1983", + "summary": "The Documentary Hypothesis and the Composition of the Pentateuch: Eight Lectures by U. Cassuto (1983)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["221"], + "wording": ["Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.C333" + }, + "subject": [["Bible. O.T. Pentateuch", + "Criticism, interpretation, etc"]], + "source": "Amazon.com", + "workcode": "735329", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "117 " +}, +"268093967": { + "books_id": "268093967", + "title": "The world of the past", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hawkes, Jacquetta", + "authors": [{ + "lf": "Hawkes, Jacquetta", + "fl": "Jacquetta Hawkes" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Thames & Hudson, 1963.", + "date": "1963", + "summary": "The world of the past by Jacquetta Hawkes (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["930.0725"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "History of ancient world to ca. 499"] + }, + "lcc": { + "code": "GN738.H39" + }, + "workcode": "3633590", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268093992": { + "books_id": "268093992", + "title": "Biblical and Oriental Studies: Bible and Ancient Oriental Texts v. 2", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cassuto, U.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cassuto, U.", + "fl": "U. Cassuto", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "965223477X", + "isbn": { + "0": "965223477X", + "2": "9789652234773" + }, + "asin": "965223477X", + "ean": ["965223477X"], + "publication": "Magnes Press,Israel (1975), 286 pages", + "date": "1975", + "summary": "Biblical and Oriental Studies: Bible and Ancient Oriental Texts v. 2 by U. Cassuto (1975)", + "lcc": [], + "source": "amazon.com", + "workcode": "14306086", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094013": { + "books_id": "268094013", + "title": "The world of Isaac Lamdan, pioneer, poet", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Umen, Samuel", + "authors": [{ + "lf": "Umen, Samuel", + "fl": "Samuel Umen" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Philosophical Library [1961]", + "date": "1961", + "summary": "The world of Isaac Lamdan, pioneer, poet by Samuel Umen (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PJ5053.L28Z92" + }, + "subject": [["Lamdan, Isaac, 1899-1954"]], + "source": "Boston College", + "lccn": "61012624", + "workcode": "32591879", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "103 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "103 " +}, +"268094037": { + "books_id": "268094037", + "title": "Reflections on the Sedra", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Posner, Zalman I.", + "authors": [{ + "lf": "Posner, Zalman I.", + "fl": "Zalman I. Posner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Brooklyn : Balshon, [1958].", + "date": "1958", + "summary": "Reflections on the Sedra by Zalman I. Posner (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "2008 B 321" + }, + "source": "Israel Union List", + "workcode": "30261577", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "94 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "94 " +}, +"268094042": { + "books_id": "268094042", + "title": "The Goddess Anath: Canaanite Epics on the Patriarchal Age (Texts, Hebrew Translation, Commentary and Introduction)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cassuto, Umberto", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cassuto, Umberto", + "fl": "Umberto Cassuto", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652234826", + "isbn": { + "0": "9652234826", + "2": "9789652234827" + }, + "asin": "9652234826", + "ean": ["9652234826"], + "publication": "The Hebrew University Magnes Press (1971), 206 pages", + "date": "1971", + "summary": "The Goddess Anath: Canaanite Epics on the Patriarchal Age (Texts, Hebrew Translation, Commentary and Introduction) by Umberto Cassuto (1971)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["299.26"], + "wording": ["Canaanite, Phoenician, Ugarit etc", + "Other religions", + "Religion", + "Religions not provided for elsewhere", + "Sumer, Assyria, Mesopotamia"] + }, + "lcc": { + "code": "BL1671.C3713" + }, + "subject": { + "0": ["Baal (Deity)"], + "2": ["Ugaritic language", + "Texts"], + "4": ["?Anat (Semitic goddess)"], + "5": ["\u02bbAnat (Semitic goddess)"] + }, + "source": "Amazon.com", + "workcode": "1859528", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.6 inches", + "thickness": "0.9 inches", + "length": "6.4 inches", + "dimensions": "9.6 x 6.4 x 0.9 inches", + "weight": "1.1 pounds", + "pages": "206 " +}, +"268094044": { + "books_id": "268094044", + "title": "A Night to Remember: The Haggadah of Contemporary Voices (Hebrew -English) (English and Hebrew Edition)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Mishael Zion & Noam Zion", + "primaryauthorrole": "Author", + "secondaryauthor": "Kichka, Michel", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Mishael Zion & Noam Zion", + "fl": "Mishael Zion & Noam Zion", + "role": "Author" + }, + { + "lf": "Kichka, Michel", + "fl": "Michel Kichka", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0966474066", + "isbn": { + "0": "0966474066", + "2": "9780966474060" + }, + "asin": "0966474066", + "ean": ["0966474066"], + "publication": "Zion Holiday Publications (2007), 156 pages", + "date": "2007", + "summary": "A Night to Remember: The Haggadah of Contemporary Voices (Hebrew -English) (English and Hebrew Edition) by Mishael Zion & Noam Zion (2007)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM674 .Z55" + }, + "source": "amazon.com books", + "workcode": "3059898", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "156 p.; 9.75 x 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "9.75 inches", + "dimensions": "8.5 x 9.75 x 0.75 inches", + "weight": "1.4991433816 pounds", + "pages": "156 " +}, +"268094054": { + "books_id": "268094054", + "title": "May menuchot : elucidations of the Tosafot commentaries : Bava metzia, chapter three--Hamafkid", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kahana, Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga", + "authors": [{ + "lf": "Kahana, Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga", + "fl": "Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga Kahana" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem, Israel : Institute for Talmudic Commentaries, c1981.", + "date": "1981", + "summary": "May menuchot : elucidations of the Tosafot commentaries : Bava metzia, chapter three--Hamafkid by Na\u1e25man ben Ye\u1e25ez\u1e33el Sheraga Kahana (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "BM506.B33K2813 1981" + }, + "source": "University of Oxford", + "lccn": "87155781//r", + "workcode": "32591889", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "160 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "160 " +}, +"268094080": { + "books_id": "268094080", + "title": "Text of the Old Testament", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wurthwein, G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wurthwein, G.", + "fl": "G. Wurthwein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0802835309", + "isbn": { + "0": "0802835309", + "2": "9780802835307" + }, + "asin": "0802835309", + "ean": ["0802835309"], + "publication": "Eerdmans Pub Co (1980), Edition: Reprint", + "date": "1980", + "summary": "Text of the Old Testament by G. Wurthwein (1980)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.4"], + "wording": ["Old Testament (Tanakh)", + "Original texts and early versions; Codices", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1136 .W813" + }, + "subject": [["Bible. O.T.", + "Criticism, Textual"], + ["Bible. O.T.", + "Manuscripts"], + ["Bible. O.T.", + "Manuscripts, Hebrew"], + ["Bible. O.T.", + "Versions"]], + "originaltitle": "Der Text des Alten Testaments", + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "Amazon.com", + "workcode": "106747", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.9 inches", + "thickness": "0.8 inches", + "length": "6.2 inches", + "dimensions": "8.9 x 6.2 x 0.8 inches", + "weight": "1.1 pounds" +}, +"268094081": { + "books_id": "268094081", + "title": "Revolutions in Judaea; Jesus and the Jewish resistance", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Maccoby, Hyam", + "authors": [{ + "lf": "Maccoby, Hyam", + "fl": "Hyam Maccoby" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[London] Orbach and Chambers [1973]", + "date": "1973", + "summary": "Revolutions in Judaea; Jesus and the Jewish resistance by Hyam Maccoby (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM620" + }, + "subject": [["Jesus Christ Jewish Interpretations"], + ["Jesus Christ Jewish interpretations"], + ["MESSIAH"], + ["Messiah"]], + "source": "Boston College", + "workcode": "32591891", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "320 p.; 19 cm", + "height": "19 cm", + "dimensions": "19 cm", + "pages": "320 " +}, +"268094083": { + "books_id": "268094083", + "title": "Operation Susannah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Golan, Aviezer", + "secondaryauthor": "Ninio, Marcelle", + "authors": [{ + "lf": "Golan, Aviezer", + "fl": "Aviezer Golan" + }, + { + "lf": "Ninio, Marcelle", + "fl": "Marcelle Ninio" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060115556", + "isbn": { + "0": "0060115556", + "2": "9780060115555" + }, + "publication": "New York : Harper & Row, c1978.", + "date": "1978", + "summary": "Operation Susannah by Aviezer Golan (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["365.6"], + "wording": ["Inmates", + "Penal institutions and other detention institutions", + "Social problems and social services", + "Social sciences"] + }, + "lcc": { + "code": "HV9843.G6413 1978" + }, + "subject": [["Espionage, Israeli Egypt"], + ["Jews Egypt Biography"], + ["Political prisoners Egypt Biography"]], + "source": "Israel Union List", + "lccn": "77003751 //", + "workcode": "1653043", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 383 p.; 25 cm", + "height": "25 cm", + "thickness": "1.5 inches", + "length": "6.3 inches", + "dimensions": "25 x 6.3 x 1.5 cm", + "weight": "1.75 pounds", + "pages": "xii; 383 " +}, +"268094122": { + "books_id": "268094122", + "title": "Law and Narrative in the Bible: The Evidence of the Deuteronomic Laws and the Decalogue", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Carmichael, Calum M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Carmichael, Calum M.", + "fl": "Calum M. Carmichael", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0801417929", + "isbn": { + "0": "0801417929", + "2": "9780801417924" + }, + "asin": "0801417929", + "ean": ["0801417929"], + "publication": "Cornell Univ Pr (1985), Edition: 1st, 356 pages", + "date": "1985", + "summary": "Law and Narrative in the Bible: The Evidence of the Deuteronomic Laws and the Decalogue by Calum M. Carmichael (1985)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.106"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1181 .C37" + }, + "source": "amazon.com", + "workcode": "15498371", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.1 inches", + "thickness": "1.2 inches", + "length": "6.1 inches", + "dimensions": "9.1 x 6.1 x 1.2 inches", + "weight": "1.4 pounds", + "pages": "356 " +}, +"268094139": { + "books_id": "268094139", + "title": "May menuchot : elucidations of Tosefot : Tractate Berachot and Chapter Hamafkid", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kahana, Nahman ben Yehezkel Sheraga", + "authors": [{ + "lf": "Kahana, Nahman ben Yehezkel Sheraga", + "fl": "Nahman ben Yehezkel Sheraga Kahana" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9789659167111", + "isbn": ["9789659167111", + "9659167113"], + "publication": "Yerushalayim : Talmudic Commentaries Foundation, c2011, 5771.", + "date": "2011", + "summary": "May menuchot : elucidations of Tosefot : Tractate Berachot and Chapter Hamafkid by Nahman ben Yehezkel Sheraga Kahana (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["A584 KAH m"] + }, + "lcc": { + "code": "B3122" + }, + "source": "Israel Union List", + "workcode": "23261392", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "2", + "physical_description": "25 cm", + "height": "25 cm", + "dimensions": "25 cm" +}, +"268094158": { + "books_id": "268094158", + "title": "This people Israel : the meaning of Jewish existence", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baeck, Leo", + "authors": [{ + "lf": "Baeck, Leo", + "fl": "Leo Baeck" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Jewish Braille Institute, 1966.", + "date": "1966", + "summary": "This people Israel : the meaning of Jewish existence by Leo Baeck (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM613.B313" + }, + "subject": [["Jews Election, Doctrine of"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "88988310", + "workcode": "2983473", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1" +}, +"268094198": { + "books_id": "268094198", + "title": "Pictorial history of the Jewish people, from Bible times to our own day throughout the world", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ausubel, Nathan", + "authors": [{ + "lf": "Ausubel, Nathan", + "fl": "Nathan Ausubel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Crown Publishers [1953]", + "date": "1953", + "summary": "Pictorial history of the Jewish people, from Bible times to our own day throughout the world by Nathan Ausubel (1953)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS118.A8" + }, + "subject": [["Jews History Pictorial Works"], + ["Jews History Pictorial works"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "52010777", + "workcode": "239694", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "346 p.; 29 cm", + "height": "29 cm", + "dimensions": "29 cm", + "pages": "346 " +}, +"268094200": { + "books_id": "268094200", + "title": "Zionism in Germany, 1897-1933 : the shaping of a Jewish identity", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Poppel, Stephen M.", + "authors": [{ + "lf": "Poppel, Stephen M.", + "fl": "Stephen M. Poppel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600852", + "isbn": { + "0": "0827600852", + "2": "9780827600850" + }, + "publication": "Philadelphia : Jewish Publication Society of America, 1977, c1976.", + "date": "1976", + "summary": "Zionism in Germany, 1897-1933 : the shaping of a Jewish identity by Stephen M. Poppel (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.08/4", + "943.08"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DS149.P72" + }, + "subject": [["Germany History 20th century"], + ["Germany history 20th century"], + ["Jews Germany History"], + ["Zionism Germany History"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "76014284", + "workcode": "1997945", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xviii, 234 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xviii; 234 " +}, +"268094236": { + "books_id": "268094236", + "title": "Confrontations with Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Longworth, Philip", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Longworth, Philip", + "fl": "Philip Longworth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000BV1RRS", + "publication": "Anthony Blond (1967), Edition: First Edition", + "date": "1967", + "summary": "Confrontations with Judaism by Philip Longworth (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.L6" + }, + "subject": [["Judaism"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "3397850", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094258": { + "books_id": "268094258", + "title": "The tanks of Tammuz", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Teveth, Shabtai", + "authors": [{ + "lf": "Teveth, Shabtai", + "fl": "Shabtai Teveth" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0297764934", + "isbn": { + "0": "0297764934", + "2": "9780297764939" + }, + "publication": "London, Weidenfeld & Nicolson, 1968.", + "date": "1968", + "summary": "The tanks of Tammuz by Shabtai Teveth (1968)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127.4.G4T43" + }, + "subject": [["Israel Armed forces Armored troops"], + ["Israel-Arab War, 1967 Israel. Regimental histories"]], + "originaltitle": "Exposed in the Turret", + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "Library of Congress (Washington, DC)", + "lccn": "77382510", + "workcode": "2037175", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "290 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "290 " +}, +"268094295": { + "books_id": "268094295", + "title": "The Joys of Hebrew", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Glinert, Lewis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glinert, Lewis", + "fl": "Lewis Glinert", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195074246", + "isbn": { + "0": "0195074246", + "2": "9780195074246" + }, + "asin": "0195086686", + "ean": ["0195086686"], + "publication": "Oxford University Press (1993), 304 pages", + "date": "1993", + "summary": "The Joys of Hebrew by Lewis Glinert (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["398.9"], + "wording": ["Customs, etiquette & folklore", + "Folklore", + "Proverbs", + "Social sciences"] + }, + "lcc": { + "code": "PN6414 .G58" + }, + "subject": { + "0": ["Bible. O.T.", + "Quotations"], + "1": ["Hebrew language", + "Terms and phrases"], + "3": ["Jews", + "Dictionaries"], + "4": ["Jews", + "Folklore", + "Dictionaries"], + "5": ["Judaism", + "Quotations, Maxims, etc"], + "7": ["Judaism", + "Quotations, maxims, etc"], + "9": ["Proverbs, Hebrew"], + "11": ["Proverbs, Jewish"], + "13": ["Rabbinical literature"] + }, + "series": ["Oxford: Bilingual Dictionaries"], + "genre": ["Nonfiction", + "Reference", + "Religion & Spirituality"], + "genre_id": ["20275895", + "4877", + "1944"], + "source": "amazon.com books", + "workcode": "378474", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8.6 x 0.77 inches", + "height": "0.77 inches", + "thickness": "5.58 inches", + "length": "8.6 inches", + "dimensions": "0.77 x 8.6 x 5.58 inches", + "weight": "0.54895103238 pounds", + "pages": "304 " +}, +"268094300": { + "books_id": "268094300", + "title": "Saul Lieberman: the man and his work", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schochet, Elijah Judah", + "secondaryauthor": "Spiro, Solomon", + "authors": [{ + "lf": "Schochet, Elijah Judah", + "fl": "Elijah Judah Schochet" + }, + { + "lf": "Spiro, Solomon", + "fl": "Solomon Spiro" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "087334085X", + "isbn": { + "0": "087334085X", + "2": "9780873340854" + }, + "publication": "New York : <> Jewish Theological Seminary of America, 2005.", + "date": "2005", + "summary": "Saul Lieberman: the man and his work by Elijah Judah Schochet (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM 755 L53S36 2005" + }, + "subject": [["Lieberman, Saul, 1898-1983"]], + "source": "Israel Union List", + "workcode": "6090931", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xv, 303 p.; 26 cm", + "height": "26 cm", + "dimensions": "26 cm", + "pages": "xv; 303 " +}, +"268094306": { + "books_id": "268094306", + "title": "L'chaim! Inspiring and Uplifting Divrei Torah to Enhance Life-Cycle Events", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabbi Ben-Zion Rand", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Ben-Zion Rand", + "fl": "Rabbi Ben-Zion Rand", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1892615185", + "isbn": { + "0": "1892615185", + "2": "9781892615183" + }, + "asin": "1892615185", + "ean": ["1892615185"], + "publication": "Hebrew Theological College Press (2011), Edition: The Maury & Helen Kaufman Edition, 318 pages", + "date": "2011", + "summary": "L'chaim! Inspiring and Uplifting Divrei Torah to Enhance Life-Cycle Events by Rabbi Ben-Zion Rand (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "lcc": { + "code": "B1025" + }, + "source": "amazon.com books", + "workcode": "18326538", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "318 p.", + "weight": "1.5 pounds", + "pages": "318 " +}, +"268094326": { + "books_id": "268094326", + "title": "The walls of Jerusalem; an excursion into Jewish history", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Raphael, Chaim", + "authors": [{ + "lf": "Raphael, Chaim", + "fl": "Chaim Raphael" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Knopf, 1968.", + "date": "1968", + "summary": "The walls of Jerusalem; an excursion into Jewish history by Chaim Raphael (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.3/3", + "913.3"], + "wording": ["Antiquities of ancient countries", + "Geography & travel", + "Geography of and travel in ancient world", + "History & geography"] + }, + "lcc": { + "code": "BM729.P3R3" + }, + "subject": [["Jerusalem History Siege, 70 A.D"], + ["MIDDLE EAST"], + ["Middle East"], + ["Middle east"], + ["middle east"]], + "source": "University of Chicago (Chicago, IL)", + "lccn": "67018623 //", + "workcode": "4211626", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xlvi, 230 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xlvi; 230 " +}, +"268094327": { + "books_id": "268094327", + "title": "Only a path", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Guber, Riv\u1e33ah", + "authors": [{ + "lf": "Guber, Riv\u1e33ah", + "fl": "Riv\u1e33ah Guber" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Ramat Gan, Massada [1972]", + "date": "1972", + "summary": "Only a path by Riv\u1e33ah Guber (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94/05/0922", + "956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "CT1919.P38G8413" + }, + "subject": [["Guber, Riv\u1e33ah"], + ["Israel Biography"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "72950598", + "workcode": "32591905", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "205 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "205 " +}, +"268094354": { + "books_id": "268094354", + "title": "Chronicles : news of the past", + "sortcharacter": "1", + "public": "true", + "authors": [[]], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Jerusalem, 1968.", + "date": "1968", + "summary": "Chronicles : news of the past (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.9"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "PERIODICALS - 5th FLOOR" + }, + "subject": [["Jews History Periodicals"], + ["Jews History Popular works"]], + "series": ["Chronicles, news of the past"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "Israel Union List", + "workcode": "1564670", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268094378": { + "books_id": "268094378", + "title": "Traditions of the Bible : a guide to the Bible as it was at the start of the common era", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kugel, James L.", + "authors": [{ + "lf": "Kugel, James L.", + "fl": "James L. Kugel" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0674791517", + "isbn": { + "0": "0674791517", + "2": "9780674791510" + }, + "publication": "Cambridge, Mass. [u.a.] : Harvard Univ. Press, 1998.", + "date": "1998", + "summary": "Traditions of the Bible : a guide to the Bible as it was at the start of the common era by James L. Kugel (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222/.106/09", + "222.106"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225.2" + }, + "source": "GBV - Gemeinsamer Bibliotheksverbund / GBV Common Library Network (Göttingen, NI)", + "workcode": "90944", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "1080 p.; 10.44 inches", + "height": "10.44 inches", + "thickness": "2.35 inches", + "length": "6.8 inches", + "dimensions": "10.44 x 6.8 x 2.35 inches", + "weight": "3.98 pounds", + "pages": "XX; 1055 " +}, +"268094385": { + "books_id": "268094385", + "title": "A history of the Jews in Christian Spain", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Baer, Yitzhak", + "authors": [{ + "lf": "Baer, Yitzhak", + "fl": "Yitzhak Baer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827604319", + "isbn": { + "0": "0827604319", + "2": "9780827604315" + }, + "publication": "Philadelphia : Jewish Publication Society, 1992.", + "date": "1992", + "summary": "A history of the Jews in Christian Spain by Yitzhak Baer (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["946/.004924", + "946.004924"], + "wording": ["History & geography", + "History of Europe", + "Spain", + "Spain - Ethnic groups", + "Spain, Andorra, Gibraltar, Portugal"] + }, + "lcc": { + "code": "DS135.S7B343 1992" + }, + "subject": [["Jews Spain History"], + ["Spain Ethnic relations"], + ["Spain History 711-1516"]], + "source": "Brandeis University (Waltham, MA)", + "lccn": "93146393", + "workcode": "856821", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "2", + "physical_description": "20 cm", + "height": "20 cm", + "dimensions": "20 cm" +}, +"268094395": { + "books_id": "268094395", + "title": "Outlines of Jewish history", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Magnus, Lady K.", + "authors": [{ + "lf": "Magnus, Lady K.", + "fl": "Lady K. Magnus" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Vallentine, Mitchell, 1958.", + "date": "1958", + "summary": "Outlines of Jewish history by Lady K. Magnus (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "workcode": "32591908", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268094421": { + "books_id": "268094421", + "title": "Nehama Leibowitz : teacher and Bible scholar", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Unterman, Yael", + "authors": [{ + "lf": "Unterman, Yael", + "fl": "Yael Unterman" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9789655240191", + "isbn": ["9789655240191", + "9655240193"], + "publication": "Jerusalem ; New York : Urim Publications, c2009.", + "date": "2009", + "summary": "Nehama Leibowitz : teacher and Bible scholar by Yael Unterman (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200"], + "wording": ["Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "CT1919.P38L448 2009" + }, + "subject": [["Jewish teachers Israel Biography"], + ["Leibowitz, Nehama"], + ["Women Biblical scholars Israel Biography"], + ["Women Jewish scholars Israel Biography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1944"], + "source": "Library of Congress (Washington, DC)", + "lccn": "2009436880", + "workcode": "8011800", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "607 p.; 25 cm", + "height": "25 cm", + "thickness": "1.7 inches", + "length": "7.2 inches", + "dimensions": "25 x 7.2 x 1.7 cm", + "weight": "2.6 pounds", + "pages": "607 " +}, +"268094427": { + "books_id": "268094427", + "title": "Only a path", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Guber, Rivka. [from old catalog]", + "authors": [{ + "lf": "Guber, Rivka. [from old catalog]", + "fl": "Rivka. [from old catalog] Guber" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Ramat Gan, Massada [1972]", + "date": "1972", + "summary": "Only a path by Rivka. [from old catalog] Guber (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "CT1919.P38G8413" + }, + "source": "Library of Congress (Washington, DC)", + "lccn": "ltf91094327", + "workcode": "32591909", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "205 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "205 " +}, +"268094456": { + "books_id": "268094456", + "title": "Critique of religion and philosophy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaufmann, Walter", + "authors": [{ + "lf": "Kaufmann, Walter", + "fl": "Walter Kaufmann" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "London : Faber, 1959", + "date": "1959", + "summary": "Critique of religion and philosophy by Walter Kaufmann (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["D0500647135"] + }, + "lcc": { + "code": "BL48.K38 1959" + }, + "subject": [["PHILOSOPHY AND RELIGION"], + ["Philosophy and Religion"], + ["Philosophy and religion"], + ["RELIGION"], + ["Religion"], + ["philosophy and religion"], + ["religion"]], + "source": "University of Oxford", + "lccn": "LC 58-7097", + "workcode": "88732", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvii, 325 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "pages": "xvii; 325 " +}, +"268094465": { + "books_id": "268094465", + "title": "Jewish philosophy in modern times; from Mendelssohn to Rosenzweig", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rotenstreich, Nathan", + "authors": [{ + "lf": "Rotenstreich, Nathan", + "fl": "Nathan Rotenstreich" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York : Holt, Rinehart and Winston, [1968]", + "date": "1968", + "summary": "Jewish philosophy in modern times; from Mendelssohn to Rosenzweig by Nathan Rotenstreich (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181/.3", + "181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B159.R58" + }, + "subject": [["Jewish Philosophers"], + ["Jewish philosophers"]], + "source": "NEOS Consortium (Edmonton, AB)", + "lccn": "68010074", + "workcode": "2378633", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "282 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "282 " +}, +"268094471": { + "books_id": "268094471", + "title": "Knight of Onions and Knight of Garlic,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bialik, Hayyim Nahman", + "primaryauthorrole": "Author", + "secondaryauthor": "Danby, Herbert|Emanuel Romano", + "secondaryauthorroles": "Translator|Illustrator", + "authors": [{ + "lf": "Bialik, Hayyim Nahman", + "fl": "Hayyim Nahman Bialik", + "role": "Author" + }, + { + "lf": "Danby, Herbert", + "fl": "Herbert Danby", + "role": "Translator" + }, + { + "lf": "Emanuel Romano", + "fl": "Emanuel Romano", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00085W11S", + "publication": "Jordan Publishing (1939)", + "date": "1939", + "summary": "Knight of Onions and Knight of Garlic, by Hayyim Nahman Bialik (1939)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.41"], + "wording": ["Afro-Asiatic literatures", + "Hebrew poetry", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.B5 A694" + }, + "source": "amazon.com books", + "workcode": "7222362", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094499": { + "books_id": "268094499", + "title": "The signal fires of Lachish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Guber, Rivka", + "authors": [{ + "lf": "Guber, Rivka", + "fl": "Rivka Guber" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Tel Aviv, Massadah, [1964]", + "date": "1964", + "summary": "The signal fires of Lachish by Rivka Guber (1964)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS110.L3G83 1964" + }, + "subject": [["Lachish (Israel)"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "he 64000448", + "workcode": "3594700", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "281 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "281 " +}, +"268094505": { + "books_id": "268094505", + "title": "Toward a meaningful life : the wisdom of the rebbe", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacobson, Simon", + "secondaryauthor": "Schneersohn, Menahem Mendel", + "authors": [{ + "lf": "Jacobson, Simon", + "fl": "Simon Jacobson" + }, + { + "lf": "Schneersohn, Menahem Mendel", + "fl": "Menahem Mendel Schneersohn" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "068814196X", + "isbn": { + "0": "068814196X", + "2": "9780688141967" + }, + "publication": "New York, NY : William Morrow, 1995.", + "date": "1995", + "summary": "Toward a meaningful life : the wisdom of the rebbe by Simon Jacobson (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Undetermined"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["296.8/3322", + "296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.2.J33 1995" + }, + "subject": [["Habad"], + ["Hasidism"], + ["Judaism Doctrines"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "95015865", + "workcode": "282753", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxv, 294 p.; 22 cm", + "height": "22 cm", + "thickness": "1.1 inches", + "length": "5.7 inches", + "dimensions": "22 x 5.7 x 1.1 cm", + "weight": "1.1 pounds", + "pages": "xxv; 294 " +}, +"268094519": { + "books_id": "268094519", + "title": "Outlines of Jewish History from B.C. 586 to C.E. 1885", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Magnus, Katie, Lady", + "primaryauthorrole": "Author", + "secondaryauthor": "Friedländer, M. 1833-1910", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Magnus, Katie, Lady", + "fl": "Katie Magnus, Lady", + "role": "Author" + }, + { + "lf": "Friedländer, M. 1833-1910", + "fl": "M. 1833-1910 Friedländer", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0CW1H18GH", + "publication": "HardPress (2024), 496 pages", + "date": "2024", + "summary": "Outlines of Jewish History from B.C. 586 to C.E. 1885 by Katie Magnus, Lady (2024)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "DS118.M2" + }, + "source": "amazon.com books", + "workcode": "27313304", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268094526": { + "books_id": "268094526", + "title": "Fear No Evil", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sharansky, Natan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sharansky, Natan", + "fl": "Natan Sharansky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394558782", + "isbn": { + "0": "0394558782", + "2": "9780394558783" + }, + "asin": "0394558782", + "ean": ["0394558782"], + "publication": "Random House (1988), Edition: 1st, 437 pages", + "date": "1988", + "summary": "Fear No Evil by Natan Sharansky (1988)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["323.4"], + "wording": ["Civil and political rights", + "Political science", + "Social sciences", + "The state and the individual"] + }, + "lcc": { + "code": "DS135.R95 S497" + }, + "subject": { + "0": ["Civil rights", + "Soviet Union"], + "2": ["Jews", + "Soviet Union", + "Biography"], + "4": ["Political prisoners", + "Soviet Union", + "Biography"], + "6": ["Refuseniks", + "Biography"], + "8": ["Shcharansky, Anatoly"], + "9": ["Shcharansky, Anatoly", + "Imprisonment"] + }, + "awards": ["National Jewish Book Award", + "Notable Books List"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "3805"], + "source": "amazon.com", + "workcode": "72578", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.4 inches", + "thickness": "1.8 inches", + "length": "5.9 inches", + "dimensions": "9.4 x 5.9 x 1.8 inches", + "weight": "0.5 pounds", + "pages": "459 " +}, +"268094552": { + "books_id": "268094552", + "title": "Choosing a sex ethic : a Jewish inquiry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Borowitz, Eugene B.", + "authors": [{ + "lf": "Borowitz, Eugene B.", + "fl": "Eugene B. Borowitz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "[New York] : Published by Schocken Books for B'nai B'rith Hillel Foundations, c1969.", + "date": "1969", + "summary": "Choosing a sex ethic : a Jewish inquiry by Eugene B. Borowitz (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3/85", + "296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "HQ32.B65" + }, + "subject": [["JUDAISM"], + ["Jewish Ethics"], + ["Jewish ethics"], + ["Judaism"], + ["Religion and Sex"], + ["Religion and sex"], + ["SEXUAL ETHICS"], + ["Sexual Behavior"], + ["Sexual Ethics"], + ["Sexual behavior"], + ["Sexual ethics"], + ["judaism"], + ["sexual behavior"], + ["sexual ethics"]], + "source": "Harvard OpenMetadata", + "lccn": "73079123", + "workcode": "1104364", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "ix, 182 p.; 21 cm", + "height": "21 cm", + "dimensions": "21 cm", + "pages": "ix; 182 " +}, +"268094569": { + "books_id": "268094569", + "title": "Hasidism and the Jewish Enlightenment : their confrontation in Galicia and Poland in the first half of the nineteenth century", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mahler, Raphael", + "authors": [{ + "lf": "Mahler, Raphael", + "fl": "Raphael Mahler" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602332", + "isbn": { + "0": "0827602332", + "2": "9780827602335" + }, + "publication": "Philadelphia : Jewish Publication Society of America, 1985.", + "date": "1985", + "summary": "Hasidism and the Jewish Enlightenment : their confrontation in Galicia and Poland in the first half of the nineteenth century by Raphael Mahler (1985)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["296.8/33", + "296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198.M2513 1985" + }, + "subject": [["Hasidism Galicia (Poland and Ukraine) History"], + ["Hasidism Poland History"], + ["Haskalah Galicia (Poland and Ukraine) History"], + ["Haskalah Poland History"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "83023890", + "workcode": "866466", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xvii, 411 p.; 25 cm", + "height": "25 cm", + "dimensions": "25 cm", + "pages": "xvii; 411 " +},"268094588": { + "books_id": "268094588", + "title": "Judaism in a Christian world", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gordis, Robert", + "authors": [{ + "lf": "Gordis, Robert", + "fl": "Robert Gordis" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, McGraw-Hill [1966]", + "date": "1966", + "summary": "Judaism in a Christian world by Robert Gordis (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0904"], + "wording": ["Biography And History", + "By Period", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.G66" + }, + "subject": [["JUDAISM"], + ["Judaism"], + ["judaism"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "66023275", + "workcode": "179124", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xxxiv, 253 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xxxiv; 253 " +}, +"268094621": { + "books_id": "268094621", + "title": "Hebrew through comics =: Gam kakh lomdim \u02bbIvrit (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rolnik, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rolnik, Amos", + "fl": "Amos Rolnik", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007B5YO4", + "publication": "Rolnik (1984), Edition: Experimental ed", + "date": "1984", + "summary": "Hebrew through comics =: Gam kakh lomdim \u02bbIvrit (English and Hebrew Edition) by Amos Rolnik (1984)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage_codeA": ["heb", + "eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591864", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268094647": { + "books_id": "268094647", + "title": "Patterns in Time: Chanukah: Volume 8 (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rav Matis Weinberg", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rav Matis Weinberg", + "fl": "Rav Matis Weinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873064860", + "isbn": { + "0": "0873064860", + "2": "9780873064866" + }, + "asin": "0873064860", + "ean": ["0873064860"], + "publication": "Feldheim Publishers, Ltd. (1988), Edition: First Edition, 368 pages", + "date": "1988", + "summary": "Patterns in Time: Chanukah: Volume 8 (English and Hebrew Edition) by Rav Matis Weinberg (1988)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.43"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.H3 W42" + }, + "source": "amazon.com books", + "workcode": "1612649", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "368 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.5 inches", + "length": "6.75 inches", + "dimensions": "9.5 x 6.75 x 1.5 inches", + "weight": "2.05 pounds", + "pages": "368 " +}, +"268094676": { + "books_id": "268094676", + "title": "Tradition and reality; the impact of history on modern Jewish thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rotenstreich, Nathan", + "authors": [{ + "lf": "Rotenstreich, Nathan", + "fl": "Nathan Rotenstreich" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394464257", + "isbn": { + "0": "0394464257", + "2": "9780394464251" + }, + "publication": "New York, Random House [c1972]", + "date": "1972", + "summary": "Tradition and reality; the impact of history on modern Jewish thought by Nathan Rotenstreich (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296/.09/03", + "296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM195.R64" + }, + "subject": [["Judaism History"], + ["Judaism history"]], + "source": "Library of Congress (Washington, DC)", + "lccn": "71159369", + "workcode": "1172163", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xii, 145 p.; 22 cm", + "height": "22 cm", + "dimensions": "22 cm", + "pages": "xii; 145 " +}, +"268094689": { + "books_id": "268094689", + "title": "Hasidism : the movement and its masters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabinowicz, Harry M.", + "authors": [{ + "lf": "Rabinowicz, Harry M.", + "fl": "Harry M. Rabinowicz" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876689985", + "isbn": { + "0": "0876689985", + "2": "9780876689981" + }, + "publication": "Northvale, N.J. ; London : Aronson, 1988.", + "date": "1988", + "summary": "Hasidism : the movement and its masters by Harry M. Rabinowicz (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8/33", + "296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM198" + }, + "subject": [["Hasidism"]], + "workcode": "2902965", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"268094695": { + "books_id": "268094695", + "title": "Zlateh the goat : and other stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "secondaryauthor": "Sendak, Maurice", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer" + }, + { + "lf": "Sendak, Maurice", + "fl": "Maurice Sendak" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0582155231", + "isbn": { + "0": "0582155231", + "2": "9780582155237" + }, + "publication": "London : Longman Young, 1970.", + "date": "1970", + "summary": "Zlateh the goat : and other stories by Isaac Bashevis Singer (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["398.2"], + "wording": ["Customs, etiquette & folklore", + "Folk literature", + "Folklore", + "Social sciences"] + }, + "lcc": { + "code": "PZ7.S6167 Z" + }, + "subject": [["Folklore Poland"], + ["Jews Folklore"], + ["Jews Poland Juvenile fiction"], + ["SHORT STORIES"], + ["Short Stories"], + ["Short stories"], + ["Singer, Isaac Bashevis, Translations into English. 1904-1991"], + ["short stories"]], + "awards": ["A Horn Book Fanfare Best Book", + "IBBY Honour Book", + "Library of Congress Children's Literature Center Children's Books", + "Newbery Medal", + "William Allen White Children's Book Award"], + "genre": ["Fiction", + "Children's Books"], + "genre_id": ["17160326", + "11"], + "source": "National Library of New Zealand (Wellington, WGN)", + "workcode": "18548870", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "xi, 90 p.; 23 cm", + "height": "23 cm", + "dimensions": "23 cm", + "weight": "1.74 pounds", + "pages": "xi; 90 " +}, +"268094700": { + "books_id": "268094700", + "title": "Philosophies of Judaism; the history of Jewish philosophy from Biblical times to Franz Rosenzweig", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Guttmann, Julius", + "authors": [{ + "lf": "Guttmann, Julius", + "fl": "Julius Guttmann" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "New York, Holt, Rinehart and Winston [1964]", + "date": "1964", + "summary": "Philosophies of Judaism; the history of Jewish philosophy from Biblical times to Franz Rosenzweig by Julius Guttmann (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B154.G813" + }, + "subject": [["JUDAISM"], + ["Judaism"], + ["Philosophy, Jewish"], + ["judaism"], + ["philosophy, Jewish"]], + "source": "Yale University (New Haven, CT)", + "lccn": "63011875", + "workcode": "1585455", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "physical_description": "x, 464 p.; 24 cm", + "height": "24 cm", + "dimensions": "24 cm", + "pages": "x; 464 " +}, +"268094728": { + "books_id": "268094728", + "title": "A History of the Jewish People", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Margolis, Max L.", + "primaryauthorrole": "Author", + "secondaryauthor": "Marx, Alexander", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Margolis, Max L.", + "fl": "Max L. Margolis", + "role": "Author" + }, + { + "lf": "Marx, Alexander", + "fl": "Alexander Marx", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0C5BMKJWC", + "ean": ["9798376338421"], + "publication": "Independently published (2023), 827 pages", + "date": "2023", + "summary": "A History of the Jewish People by Max L. Margolis (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS118 .M3" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"] + }, + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1568524", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "827 p.; 9 inches", + "height": "9 inches", + "thickness": "1.87 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.87 inches", + "pages": "827 " +}, +"268094735": { + "books_id": "268094735", + "title": "The Taste of Yiddish", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Feinsilver, Lillian Mermin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feinsilver, Lillian Mermin", + "fl": "Lillian Mermin Feinsilver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "049802427X", + "isbn": { + "0": "049802427X", + "2": "9780498024276" + }, + "asin": "049802427X", + "ean": ["049802427X"], + "publication": "Gazelle Book Services Ltd (1980), Edition: No Edition Stated, 437 pages", + "date": "1980", + "summary": "The Taste of Yiddish by Lillian Mermin Feinsilver (1980)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["439.1"], + "wording": ["German & related languages", + "Language", + "Other Germanic languages", + "Yiddish"] + }, + "lcc": { + "code": "PJ5113.F43" + }, + "subject": [["Yiddish language"]], + "source": "Amazon.com", + "workcode": "1160688", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "9.1 inches", + "thickness": "1.2 inches", + "length": "6 inches", + "dimensions": "9.1 x 6 x 1.2 inches", + "weight": "1.1 pounds", + "pages": "437 " +}, +"268094737": { + "books_id": "268094737", + "title": "World Jewry and the State of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Davis, Moshe", + "authors": [{ + "lf": "Davis, Moshe", + "fl": "Moshe Davis" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0405103050", + "isbn": { + "0": "0405103050", + "2": "9780405103056" + }, + "publication": "[New York] : Arno Press, c1977", + "date": "1977", + "summary": "World Jewry and the State of Israel by Moshe Davis (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "E990.01" + }, + "subject": [["Antisemitism History"], + ["Antisemitism history"], + ["Israel History"], + ["Israel and the Diaspora"], + ["Israel and the diaspora"], + ["Israel history"], + ["Jews HIstory"], + ["Jews History"], + ["Jews Identity"], + ["Jews history"], + ["Jews identity"], + ["antisemitism history"]], + "source": "Israel Union List", + "workcode": "3250473", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "volumes": "1", + "pages": "xix; 372 " +}, +"268094753": { + "books_id": "268094753", + "title": "The Journey Back from Hell: Conversations With Concentration Camp Survivors : An Oral History", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gill, Anton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gill, Anton", + "fl": "Anton Gill", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0380707772", + "isbn": { + "0": "0380707772", + "2": "9780380707775" + }, + "asin": "0380707772", + "ean": ["0380707772"], + "publication": "Avon Books (1990), Edition: First Edition, 512 pages", + "date": "1990", + "summary": "The Journey Back from Hell: Conversations With Concentration Camp Survivors : An Oral History by Anton Gill (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D805.A2 G49" + }, + "subject": [["Holocaust survivors", + "Interviews"], + ["Prisoners of war", + "Europe", + "Interviews"], + ["World War, 1939-1945", + "Europe.", + "Concentration camps"], + ["World War, 1939-1945", + "Prisoners and prisons, German"]], + "source": "amazon.com books", + "workcode": "815136", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "512 p.; 8 inches", + "height": "8 inches", + "thickness": "5.3 inches", + "length": "1.2 inches", + "dimensions": "8 x 1.2 x 5.3 inches", + "weight": "0.85 pounds", + "pages": "512 " +}, +"268094783": { + "books_id": "268094783", + "title": "Medieval Jewry in Northern France: A Political and Social History (The Johns Hopkins University Studies in Historical and Political Science)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chazan, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chazan, Robert", + "fl": "Robert Chazan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1421430665", + "isbn": { + "0": "1421430665", + "2": "9781421430669" + }, + "asin": "1421430665", + "ean": ["1421430665"], + "publication": "Johns Hopkins University Press (2019), 258 pages", + "date": "2019", + "summary": "Medieval Jewry in Northern France: A Political and Social History (The Johns Hopkins University Studies in Historical and Political Science) by Robert Chazan (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["914.4"], + "wording": ["France and Monaco", + "Geography & travel", + "Geography of and travel in Europe", + "History & geography"] + }, + "lcc": { + "code": "DS135.F81 C48" + }, + "subject": [["Jews", + "France, Northern", + "History"]], + "awards": ["Distinguished Publication Award, Ohio Academy of History"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Travel"], + "genre_id": ["20275895", + "1247", + "1599", + "3578"], + "source": "amazon.com books", + "workcode": "4228836", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "258 p.; 9 inches", + "height": "9 inches", + "thickness": "0.59 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.59 inches", + "weight": "0.82011961464 pounds", + "pages": "258 " +}, +"268094784": { + "books_id": "268094784", + "title": "A History of Mediaeval Jewish Philosophy", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Husik, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Husik, Isaac", + "fl": "Isaac Husik", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0486422372", + "isbn": { + "0": "0486422372", + "2": "9780486422374" + }, + "asin": "0486422372", + "ean": ["0800759422371"], + "upc": ["800759422371"], + "publication": "Dover Publications (2002), 528 pages", + "date": "2002", + "summary": "A History of Mediaeval Jewish Philosophy by Isaac Husik (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B755 .H8" + }, + "subject": { + "0": ["Philosophy, Jewish"], + "2": ["Philosophy, Medieval"] + }, + "source": "amazon.com books", + "workcode": "939253", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "528 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1 inches", + "weight": "1.19931470528 pounds", + "pages": "528 " +}, +"268094807": { + "books_id": "268094807", + "title": "Isaiah: A Commentary (The Jewish Commentary for Bible Readers)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Solomon Freehof", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Solomon Freehof", + "fl": "Solomon Freehof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001PH5JQC", + "publication": "Union of American Hebrew Congregations (1972)", + "date": "1972", + "summary": "Isaiah: A Commentary (The Jewish Commentary for Bible Readers) by Solomon Freehof (1972)", + "ddc": { + "code": ["224.1"], + "wording": ["Isaiah", + "Prophetic books of Old Testament", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1515.F74" + }, + "series": ["The Jewish Commentary for Bible Readers"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2654990", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.000625 pounds" +}, +"268094824": { + "books_id": "268094824", + "title": "The last days of Shylock", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lewisohn, Ludwig", + "primaryauthorrole": "Author", + "secondaryauthor": "Szyk, Arthur", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Lewisohn, Ludwig", + "fl": "Ludwig Lewisohn", + "role": "Author" + }, + { + "lf": "Szyk, Arthur", + "fl": "Arthur Szyk", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000879QKA", + "publication": "Behrman's Jewish Book House (1939), Edition: First Edition", + "date": "1939", + "summary": "The last days of Shylock by Ludwig Lewisohn (1939)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813"], + "wording": ["American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ3.L591 PS3523 .E96" + }, + "source": "amazon.com books", + "workcode": "7737565", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094864": { + "books_id": "268094864", + "title": "The vision and the way;: An interpretation of Jewish ethics", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Agus, Jacob B", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agus, Jacob B", + "fl": "Jacob B Agus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BOLB2", + "publication": "Ungar (1966), Edition: Presumed 1st Edition, 365 pages", + "date": "1966", + "summary": "The vision and the way;: An interpretation of Jewish ethics by Jacob B Agus (1966)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.385"], + "wording": ["Jewish philosophy", + "Judaism", + "Moral and Ethical Teachings", + "Other religions", + "Personal and Social Morality", + "Religion"] + }, + "lcc": { + "code": "BJ1280.A45" + }, + "source": "amazon.com books", + "workcode": "14381138", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "365 p.", + "weight": "1.25 pounds", + "pages": "365 " +}, +"268094891": { + "books_id": "268094891", + "title": "Tractate Sanhedrin: Commentary and study guide (Master a Mesikhta series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Nachman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Nachman", + "fl": "Nachman Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006ENQN8", + "publication": "Distributed by Philipp Feldheim (1987), 226 pages", + "date": "1987", + "summary": "Tractate Sanhedrin: Commentary and study guide (Master a Mesikhta series) by Nachman Cohen (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "5959615", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094941": { + "books_id": "268094941", + "title": "The Redaction of the Babylonian Talmud", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaplan, Julius", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Julius", + "fl": "Julius Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000PWCB96", + "publication": "Bloch Publishing Company (1933), Edition: First Edition", + "date": "1933", + "summary": "The Redaction of the Babylonian Talmud by Julius Kaplan (1933)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": [], + "source": "amazon.com books", + "workcode": "2929312", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"268094958": { + "books_id": "268094958", + "title": "Tractate Nedarim: Commentary and study guide (Master a Mesikhta series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Nachman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Nachman", + "fl": "Nachman Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006EI9CQ", + "publication": "Distributed by Traditional Press (1985), 256 pages", + "date": "1985", + "summary": "Tractate Nedarim: Commentary and study guide (Master a Mesikhta series) by Nachman Cohen (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "20752132", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268094983": { + "books_id": "268094983", + "title": "Tradition and Contemporary Experience", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jospe, Alfred", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jospe, Alfred", + "fl": "Alfred Jospe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805202757", + "isbn": { + "0": "0805202757", + "2": "9780805202755" + }, + "asin": "0805202757", + "ean": ["0805202757"], + "publication": "Random House~trade (1970), 372 pages", + "date": "1970", + "summary": "Tradition and Contemporary Experience by Alfred Jospe (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.08"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565.J64" + }, + "source": "amazon.com books", + "workcode": "1630796", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268094984": { + "books_id": "268094984", + "title": "The Jewish American Family Album (American Family Albums)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hoobler, Dorothy", + "primaryauthorrole": "Author", + "secondaryauthor": "Hoobler, Thomas|Patinkin, Mandy", + "secondaryauthorroles": "Author|Introduction", + "authors": [{ + "lf": "Hoobler, Dorothy", + "fl": "Dorothy Hoobler", + "role": "Author" + }, + { + "lf": "Hoobler, Thomas", + "fl": "Thomas Hoobler", + "role": "Author" + }, + { + "lf": "Patinkin, Mandy", + "fl": "Mandy Patinkin", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195081358", + "isbn": { + "0": "0195081358", + "2": "9780195081350" + }, + "asin": "0195081358", + "ean": ["0195081358"], + "publication": "Oxford University Press (1995), Edition: 1, 128 pages", + "date": "1995", + "summary": "The Jewish American Family Album (American Family Albums) by Dorothy Hoobler (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 H655" + }, + "series": ["American Family Album"], + "genre": ["Nonfiction", + "Teen"], + "genre_id": ["20275895", + "631218"], + "source": "amazon.com books", + "workcode": "2252999", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "128 p.; 11.37 x 8.81 inches", + "height": "8.81 inches", + "thickness": "0.59 inches", + "length": "11.37 inches", + "dimensions": "8.81 x 11.37 x 0.59 inches", + "weight": "1.6 pounds", + "pages": "128 " +}, +"268095018": { + "books_id": "268095018", + "title": "The King Of Flesh And Blood", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shamir, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shamir, Moshe", + "fl": "Moshe Shamir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CJXOI", + "publication": "East and West Library (1958), Edition: Reprint., 542 pages", + "date": "1958", + "summary": "The King Of Flesh And Blood by Moshe Shamir (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.S5274 K" + }, + "source": "amazon.com books", + "workcode": "2930030", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268095063": { + "books_id": "268095063", + "title": "In Search of Excellence: The Story of Robert Neal Sklare", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sklare, Joshua M", + "primaryauthorrole": "Author", + "secondaryauthor": "Photos", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Sklare, Joshua M", + "fl": "Joshua M Sklare", + "role": "Author" + }, + { + "lf": "Photos", + "fl": "Photos", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002Y6IEDS", + "publication": "Montefiore Press (2008), Edition: First Edition (US) First Printing", + "date": "2008", + "summary": "In Search of Excellence: The Story of Robert Neal Sklare by Joshua M Sklare (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32591956", + "entrydate": "2024-07-21", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268803294": { + "books_id": "268803294", + "title": "Code of Jewish law (Kitzur Schuchan Aruch): a compilation of Jewish laws and customs [Hardcover] [Jan 01, 1927] GANZFRIED, Solomon (Rabbi)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001OOUMKE", + "publication": "(1927)", + "date": "1927", + "summary": "Code of Jewish law (Kitzur Schuchan Aruch): a compilation of Jewish laws and customs [Hardcover] [Jan 01, 1927] GANZFRIED, Solomon (Rabbi) by unknown author (1927)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32661446", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"268803991": { + "books_id": "268803991", + "title": "Code of Jewish Law: A Compilation of Jewish Laws and Customs", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ganzfried, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ganzfried, Solomon", + "fl": "Solomon Ganzfried", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0884824233", + "isbn": { + "0": "0884824233", + "2": "9780884824237" + }, + "asin": "0884824233", + "ean": ["0884824233"], + "publication": "Hebrew Pub Co (1963), Edition: Revised, 694 pages", + "date": "1963", + "summary": "Code of Jewish Law: A Compilation of Jewish Laws and Customs by Solomon Ganzfried (1963)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560 .G322" + }, + "subject": { + "0": ["Jewish law"], + "2": ["Judaism"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "Works to 1900"], + "8": ["Judaism", + "works to 1900"], + "9": ["judaism"] + }, + "source": "Amazon.com", + "workcode": "361707", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.25 inches", + "thickness": "1.25 inches", + "length": "5.75 inches", + "dimensions": "8.25 x 5.75 x 1.25 inches", + "weight": "1.75 pounds", + "pages": "594 " +}, +"268804024": { + "books_id": "268804024", + "title": "Between the Lines of the Bible: A Modern Commentary on the 613 Commandments", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldstein, Herbert S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldstein, Herbert S.", + "fl": "Herbert S. Goldstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EKIO2", + "publication": "Crown Publishers (1959), Edition: First Edition, First Printing", + "date": "1959", + "summary": "Between the Lines of the Bible: A Modern Commentary on the 613 Commandments by Herbert S. Goldstein (1959)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32609239", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268804292": { + "books_id": "268804292", + "title": "The Ten Commandments In A Changing World", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Klein, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klein, Isaac", + "fl": "Isaac Klein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1432582216", + "isbn": { + "0": "1432582216", + "2": "9781432582210" + }, + "asin": "1432582216", + "ean": ["1432582216"], + "publication": "Kessinger Publishing (2007), 160 pages", + "date": "2007", + "summary": "The Ten Commandments In A Changing World by Isaac Klein (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM520.75 .K55" + }, + "subject": [["Jewish sermons, American"], + ["Ten Commandments", + "Sermons"], + ["Ten commandments", + "Sermons"]], + "source": "amazon.com books", + "workcode": "1352545", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "160 p.; 9 inches", + "height": "9 inches", + "thickness": "0.37 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.37 inches", + "weight": "0.5401325419 pounds", + "pages": "160 " +}, +"268804504": { + "books_id": "268804504", + "title": "Story Of Scripture,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Daniel J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silver, Daniel J.", + "fl": "Daniel J. Silver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "046508205X", + "isbn": { + "0": "046508205X", + "2": "9780465082056" + }, + "asin": "046508205X", + "ean": ["046508205X"], + "publication": "Basic Books (1990), Edition: First Edition, 320 pages", + "date": "1990", + "summary": "Story Of Scripture, by Daniel J. Silver (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.1"], + "wording": ["Origins and authenticity", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1130 .S54" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc., Jewish"], + ["Bible. O.T.", + "History"], + ["Rabbinical literature", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "808669", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "320 p.", + "weight": "1.45 pounds", + "pages": "320 " +}, +"268804758": { + "books_id": "268804758", + "title": "My Uncle the Netziv: Rabbi Baruch HaLevi Epstein Recalls His Illustrious Uncle, Rabbi Naftali Zvi Yehudah Berlin & the Panorama of His Life (The ... edition by Epstein, Baruch (1988) Hardcover", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Baruch Epstein", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Baruch Epstein", + "fl": "Baruch Epstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0899064922", + "isbn": { + "0": "0899064922", + "2": "9780899064925" + }, + "asin": "0899064922", + "ean": ["0899064922"], + "publication": "Mesorah Publications Ltd. (1988), Edition: First Edition, 223 pages", + "date": "1988", + "summary": "My Uncle the Netziv: Rabbi Baruch HaLevi Epstein Recalls His Illustrious Uncle, Rabbi Naftali Zvi Yehudah Berlin & the Panorama of His Life (The ... edition by Epstein, Baruch (1988) Hardcover by Baruch Epstein (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM755.B52" + }, + "source": "amazon.com books", + "workcode": "7994579", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "223 p.", + "thickness": "6 inches", + "length": "9 inches", + "dimensions": "9 x 6 inches", + "weight": "0.8 pounds", + "pages": "223 " +}, +"268805001": { + "books_id": "268805001", + "title": "A time to be born, a time to die =: (\u02bbEt la-ledet v\u0323e-\u02bbet la-mut) Ecclesiastes 3:2", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Klein, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klein, Isaac", + "fl": "Isaac Klein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CVGEG", + "publication": "Dept. of Youth Activities, United Synagogue of America (1976), 106 pages", + "date": "1976", + "summary": "A time to be born, a time to die =: (\u02bbEt la-ledet v\u0323e-\u02bbet la-mut) Ecclesiastes 3:2 by Isaac Klein (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM712.K565" + }, + "subject": [["Death", + "Judaism"], + ["Jewish mourning customs"]], + "source": "amazon.com books", + "workcode": "5250787", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"268805151": { + "books_id": "268805151", + "title": "Ten Commandments", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldman, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldman, Solomon", + "fl": "Solomon Goldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000UCQM7S", + "publication": "UNIV OF CHICAGO PRESS", + "summary": "Ten Commandments by Solomon Goldman", + "ddc": { + "code": ["222.16"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "Ten Commandments", + "The Bible"] + }, + "lcc": { + "code": "BM520.G6" + }, + "subject": [["Bible. O.T. Exodus XIX-XX", + "Commentaries"], + ["Ten commandments"]], + "source": "amazon.com books", + "workcode": "1901462", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.79 pounds" +}, +"268805949": { + "books_id": "268805949", + "title": "The last revolt,: The story of Rabbi Akiba;", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Opatoshu, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Opatoshu, Joseph", + "fl": "Joseph Opatoshu", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006ASYQG", + "publication": "Jewish Publication Society of America (1952), Edition: 1st Translated Edition, 307 pages", + "date": "1952", + "summary": "The last revolt,: The story of Rabbi Akiba; by Joseph Opatoshu (1952)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "lcc": { + "code": "PZ3.O612 L" + }, + "source": "amazon.com books", + "workcode": "4816462", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.", + "weight": "1 pound", + "pages": "307 " +}, +"268806534": { + "books_id": "268806534", + "title": "A Simple Story (Toby Press S. Y. Agnon Library)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Agnon, S. Y.", + "primaryauthorrole": "Author", + "secondaryauthor": "Halkin, Hillel", + "secondaryauthorroles": "Afterword", + "authors": [{ + "lf": "Agnon, S. Y.", + "fl": "S. Y. Agnon", + "role": "Author" + }, + { + "lf": "Halkin, Hillel", + "fl": "Hillel Halkin", + "role": "Afterword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1592643582", + "isbn": { + "0": "1592643582", + "2": "9781592643585" + }, + "asin": "1592643582", + "ean": ["1592643582"], + "publication": "Toby Pr (2014), Edition: Revised, 259 pages", + "date": "2014", + "summary": "A Simple Story (Toby Press S. Y. Agnon Library) by S. Y. Agnon (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5053.A4 S52413" + }, + "awards": ["Nobel Prize in Literature", + "The Great 100 Jewish Books from the Yiddish Books Center Judges"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "29138", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "259 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.75 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.75 inches", + "weight": "0.7495716908 pounds", + "pages": "259 " +}, +"268806711": { + "books_id": "268806711", + "title": "The State of Jewish Studies", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Greenstein, Edward L.", + "primaryauthorrole": "Editor", + "secondaryauthor": "Cohen, Shaye J D.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Greenstein, Edward L.", + "fl": "Edward L. Greenstein", + "role": "Editor" + }, + { + "lf": "Cohen, Shaye J D.", + "fl": "Shaye J D. Cohen", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814321941", + "isbn": { + "0": "0814321941", + "2": "9780814321942" + }, + "asin": "0814321941", + "ean": ["0814321941"], + "publication": "Wayne State University (1990), 280 pages", + "date": "1990", + "summary": "The State of Jewish Studies by Edward L. Greenstein (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS115 .S73" + }, + "source": "amazon.com books", + "workcode": "3018859", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "280 p.", + "weight": "1.25002102554 pounds", + "pages": "280 " +}, +"268806821": { + "books_id": "268806821", + "title": "Samuel Usque's Consolation for the Tribulations of Israel (Consolacam As Trulaceoens De Israel)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Usque, Samuel", + "primaryauthorrole": "Author", + "secondaryauthor": "Cohen, Martin A.", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Usque, Samuel", + "fl": "Samuel Usque", + "role": "Author" + }, + { + "lf": "Cohen, Martin A.", + "fl": "Martin A. Cohen", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760095X", + "isbn": { + "0": "082760095X", + "2": "9780827600959" + }, + "asin": "082760095X", + "ean": ["082760095X"], + "publication": "The Jewish Publication Society (1977), Edition: 2nd, 354 pages", + "date": "1977", + "summary": "Samuel Usque's Consolation for the Tribulations of Israel (Consolacam As Trulaceoens De Israel) by Samuel Usque (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS116 .U713" + }, + "subject": [["Jews", + "History"], + ["Jews", + "Persecutions"], + ["Jews", + "history"]], + "source": "amazon.com books", + "workcode": "3172107", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "354 p.", + "weight": "1.1 pounds", + "pages": "354 " +}, +"268806924": { + "books_id": "268806924", + "title": "Service of the Heart: A Guide to the Jewish Prayer Book", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Garfiel, Evelyn", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Garfiel, Evelyn", + "fl": "Evelyn Garfiel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568210418", + "isbn": { + "0": "1568210418", + "2": "9781568210414" + }, + "asin": "1568210418", + "ean": ["1568210418"], + "publication": "Jason Aronson, Inc. (1977), Edition: Reprint, 254 pages", + "date": "1977", + "summary": "Service of the Heart: A Guide to the Jewish Prayer Book by Evelyn Garfiel (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.43"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.D3 G3" + }, + "subject": { + "0": ["Judaism", + "Liturgy"], + "2": ["Siddur"] + }, + "source": "amazon.com books", + "workcode": "546443", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "254 p.; 8.78 inches", + "height": "8.78 inches", + "thickness": "0.65 inches", + "length": "6.16 inches", + "dimensions": "8.78 x 6.16 x 0.65 inches", + "weight": "0.7495716908 pounds", + "pages": "254 " +}, +"268807266": { + "books_id": "268807266", + "title": "American Judaism, 2nd Revised Edition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glazer, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glazer, Nathan", + "fl": "Nathan Glazer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226298434", + "isbn": { + "0": "0226298434", + "2": "9780226298436" + }, + "asin": "0226298434", + "ean": ["0226298434"], + "publication": "University of Chicago Press (1988), Edition: 2nd Revised, 214 pages", + "date": "1988", + "summary": "American Judaism, 2nd Revised Edition by Nathan Glazer (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0973"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "North America", + "Other religions", + "Religion", + "United States"] + }, + "lcc": { + "code": "BM205 .G5" + }, + "subject": { + "0": ["Jews", + "United States"], + "2": ["Jews", + "United States", + "Social conditions"], + "4": ["Judaism", + "United States"], + "6": ["Judaism", + "United States", + "History"], + "8": ["United States", + "Religion"] + }, + "series": ["The Chicago History of American Civilization"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "249325", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "214 p.; 8 inches", + "height": "8 inches", + "thickness": "0.6 inches", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 0.6 inches", + "weight": "0.59 pounds", + "pages": "214 " +}, +"268807350": { + "books_id": "268807350", + "title": "A history of the marranos / by Cecil Roth", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0008A8K18", + "publication": "Jewish Publication Society of America (1959), Edition: 2nd", + "date": "1959", + "summary": "A history of the marranos / by Cecil Roth by Cecil Roth (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS124 .R625" + }, + "subject": { + "0": ["Inquisition", + "Spain"], + "2": ["Marranos"], + "4": ["Marranos", + "History"] + }, + "source": "amazon.com books", + "workcode": "748406", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "weight": "1 pound" +}, +"268807926": { + "books_id": "268807926", + "title": "The Infinite Light", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rabbi Aryeh Kaplan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Aryeh Kaplan", + "fl": "Rabbi Aryeh Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1879016192", + "isbn": { + "0": "1879016192", + "2": "9781879016194" + }, + "asin": "1879016192", + "ean": ["1879016192"], + "publication": "Mesorah Publications Ltd. (1993), 69 pages", + "date": "1993", + "summary": "The Infinite Light by Rabbi Aryeh Kaplan (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.311"], + "wording": ["God", + "God and Hierarchy of Super-Human Beings", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM610 .K27" + }, + "source": "amazon.com books", + "workcode": "940081", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "69 p.; 9 inches", + "height": "9 inches", + "thickness": "6 inches", + "length": "9 inches", + "dimensions": "9 x 9 x 6 inches", + "weight": "0.15 pounds", + "pages": "69 " +}, +"268807989": { + "books_id": "268807989", + "title": "The making of the modern Jew / by Milton Steinberg", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Steinberg, Milton (1903-1950)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinberg, Milton (1903-1950)", + "fl": "Milton (1903-1950) Steinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0038L3JQ0", + "publication": "London : G. Routledge & Sons (1934), Edition: 1st Ed.", + "date": "1934", + "summary": "The making of the modern Jew / by Milton Steinberg by Milton (1903-1950) Steinberg (1934)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS143 .S7" + }, + "subject": { + "0": ["Jews", + "Civilization"], + "2": ["Jews", + "History"], + "3": ["Jews", + "History", + "70-"], + "4": ["Jews", + "Identity"], + "5": ["Jews", + "Political and social conditions"], + "7": ["Jews", + "history"], + "8": ["Judaism", + "History"], + "9": ["Judaism", + "history"] + }, + "source": "amazon.com books", + "workcode": "2069454", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268808127": { + "books_id": "268808127", + "title": "Jewish Worship", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Millgram, Abraham E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Millgram, Abraham E.", + "fl": "Abraham E. Millgram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600038", + "isbn": { + "0": "0827600038", + "2": "9780827600034" + }, + "asin": "0827600038", + "ean": ["0827600038"], + "publication": "JEWISH PUBLICATON SOCIETY (1971), Edition: First Edition, 700 pages", + "date": "1971", + "summary": "Jewish Worship by Abraham E. Millgram (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM660.M55" + }, + "subject": [["Judaism", + "History"], + ["Judaism", + "Liturgy", + "History"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1130609", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "700 p.; 8.53 inches", + "height": "8.53 inches", + "thickness": "1.8 inches", + "length": "5.89 inches", + "dimensions": "8.53 x 5.89 x 1.8 inches", + "weight": "2.04 pounds", + "pages": "700 " +}, +"268808218": { + "books_id": "268808218", + "title": "From East to West: The Westward Migration of Jews from Eastern Europe During the Seventeenth and Eighteenth Centuries", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shulvass, Moses A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shulvass, Moses A.", + "fl": "Moses A. Shulvass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B076XPTRN3", + "publication": "Wayne State University Press (2017), 160 pages", + "date": "2017", + "summary": "From East to West: The Westward Migration of Jews from Eastern Europe During the Seventeenth and Eighteenth Centuries by Moses A. Shulvass (2017)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["914.06"], + "wording": ["Facilities for travellers", + "Geography & travel", + "Geography of and travel in Europe", + "History & geography", + "subdivisions and modified standard subdivisions"] + }, + "lcc": { + "code": "DS135.G32 S54" + }, + "source": "amazon.com books", + "workcode": "4109522", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268808313": { + "books_id": "268808313", + "title": "Jacob Emden A Man of Controversy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Mortimer J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Mortimer J.", + "fl": "Mortimer J. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001KO0KH8", + "publication": "The Dropsie College (1937), Edition: First Edition", + "date": "1937", + "summary": "Jacob Emden A Man of Controversy by Mortimer J. Cohen (1937)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32661952", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268808445": { + "books_id": "268808445", + "title": "Questions and Reform Jewish Answers: New American Reform Responsa", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jacob, Walter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Jacob, Walter", + "fl": "Walter Jacob", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881230359", + "isbn": { + "0": "0881230359", + "2": "9780881230352" + }, + "asin": "0881230359", + "ean": ["0881230359"], + "publication": "Central Conference of Amer (1990), Edition: 1st US - 1st Printing, 443 pages", + "date": "1990", + "summary": "Questions and Reform Jewish Answers: New American Reform Responsa by Walter Jacob (1990)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197 .J34" + }, + "subject": [["Jewish law", + "Reform Judaism"], + ["Reform Judaism", + "Customs and practices"], + ["Responsa", + "1800-"]], + "source": "amazon.com books", + "workcode": "1104749", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "443 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1.3999353637 pounds", + "pages": "443 " +}, +"268808508": { + "books_id": "268808508", + "title": "Teshuvot for the Nineties: Reform Judaism's Answers for Today's Dilemmas", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Plaut, W. Gunther", + "primaryauthorrole": "Author", + "secondaryauthor": "Washofsky, Mark", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Plaut, W. Gunther", + "fl": "W. Gunther Plaut", + "role": "Author" + }, + { + "lf": "Washofsky, Mark", + "fl": "Mark Washofsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0030ZRWOO", + "publication": "CCAR Press (2009), 421 pages", + "date": "2009", + "summary": "Teshuvot for the Nineties: Reform Judaism's Answers for Today's Dilemmas by W. Gunther Plaut (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.A1" + }, + "source": "amazon.com books", + "workcode": "1220340", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268808561": { + "books_id": "268808561", + "title": "Amen (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Amichai, Yehuda", + "primaryauthorrole": "Author", + "secondaryauthor": "Hughes, Ted|Hughes, Ted", + "secondaryauthorroles": "Translator|Designer", + "authors": [{ + "lf": "Amichai, Yehuda", + "fl": "Yehuda Amichai", + "role": "Author" + }, + { + "lf": "Hughes, Ted", + "fl": "Ted Hughes", + "role": "Translator" + }, + { + "lf": "Hughes, Ted", + "fl": "Ted Hughes", + "role": "Designer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0915943220", + "isbn": { + "0": "0915943220", + "2": "9780915943227" + }, + "asin": "0915943220", + "ean": ["0915943220"], + "publication": "Milkweed Editions (2018), Edition: 2nd, 110 pages", + "date": "2018", + "summary": "Amen (English and Hebrew Edition) by Yehuda Amichai (2018)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5054.A65 A25" + }, + "subject": [["Amichai, Yehuda", + "Translations into English"]], + "source": "amazon.com books", + "workcode": "81770", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "110 p.; 8.98 inches", + "height": "8.98 inches", + "thickness": "0.74 inches", + "length": "6.23 inches", + "dimensions": "8.98 x 6.23 x 0.74 inches", + "weight": "0.42 pounds", + "pages": "110 " +}, +"268808615": { + "books_id": "268808615", + "title": "Birth Control in Jewish Law", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feldman, David M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feldman, David M.", + "fl": "David M. Feldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0814701469", + "isbn": { + "0": "0814701469", + "2": "9780814701461" + }, + "asin": "0814701469", + "ean": ["0814701469"], + "publication": "New York University Press (1968), 336 pages", + "date": "1968", + "summary": "Birth Control in Jewish Law by David M. Feldman (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "KBM3124 .F" + }, + "subject": [["Abortion (Jewish law)"], + ["Birth control (Jewish law)"], + ["Sex", + "Religious aspects", + "Judaism"]], + "source": "amazon.com books", + "workcode": "3330794", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "336 p.", + "height": "9.1 inches", + "thickness": "1.5 inches", + "length": "6.1 inches", + "dimensions": "9.1 x 6.1 x 1.5 inches", + "weight": "1.4 pounds", + "pages": "336 " +}, +"268808671": { + "books_id": "268808671", + "title": "Tradition: A Journal of Orthodox Jewish Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabbinical Council of America", + "primaryauthorrole": "Author", + "secondaryauthor": "Goldstein, Julie|Rynhold, Daniel|Finkelman, Yoel|Berman, Cheryl|Blau, Yitzchak|Feldmann Kaye, Miriam|Bashevkin, David|Bronstein, Yosef|Brofsky, Mali", + "secondaryauthorroles": "Author|Author|Author|Author|Author|Author|Author|Author|Editor", + "authors": [{ + "lf": "Rabbinical Council of America", + "fl": "Rabbinical Council of America", + "role": "Author" + }, + { + "lf": "Goldstein, Julie", + "fl": "Julie Goldstein", + "role": "Author" + }, + { + "lf": "Rynhold, Daniel", + "fl": "Daniel Rynhold", + "role": "Author" + }, + { + "lf": "Finkelman, Yoel", + "fl": "Yoel Finkelman", + "role": "Author" + }, + { + "lf": "Berman, Cheryl", + "fl": "Cheryl Berman", + "role": "Author" + }, + { + "lf": "Blau, Yitzchak", + "fl": "Yitzchak Blau", + "role": "Author" + }, + { + "lf": "Feldmann Kaye, Miriam", + "fl": "Miriam Feldmann Kaye", + "role": "Author" + }, + { + "lf": "Bashevkin, David", + "fl": "David Bashevkin", + "role": "Author" + }, + { + "lf": "Bronstein, Yosef", + "fl": "Yosef Bronstein", + "role": "Author" + }, + { + "lf": "Brofsky, Mali", + "fl": "Mali Brofsky", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B08L5N9YYB", + "publication": "(2020), Edition: 4", + "date": "2020", + "summary": "Tradition: A Journal of Orthodox Jewish Thought by Rabbinical Council of America (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.05"], + "wording": ["History & geography", + "History of North America", + "Periodicals", + "United States", + "United States"] + }, + "lcc": { + "code": "BM1.T7" + }, + "source": "amazon.com books", + "workcode": "10632080", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268808883": { + "books_id": "268808883", + "title": "Go and study: Essays and studies in honor of Alfred Jospe", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Jospe, Raphael", + "primaryauthorrole": "Editor", + "secondaryauthor": "Fishman, Samuel Z.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Jospe, Raphael", + "fl": "Raphael Jospe", + "role": "Editor" + }, + { + "lf": "Fishman, Samuel Z.", + "fl": "Samuel Z. Fishman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870687107", + "isbn": { + "0": "0870687107", + "2": "9780870687105" + }, + "asin": "0870687107", + "ean": ["0870687107"], + "publication": "Ktav (1980), Edition: Apparent First Edition, 396 pages", + "date": "1980", + "summary": "Go and study: Essays and studies in honor of Alfred Jospe by Raphael Jospe (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "BM42.G6" + }, + "subject": [["Jewish college students", + "United States"], + ["Jews", + "Identity"], + ["Judaism", + "History"], + ["Judaism", + "United States.", + "Study and teaching (Higher)"]], + "source": "amazon.com books", + "workcode": "4325065", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268808963": { + "books_id": "268808963", + "title": "Essays in Honor of Solomon B. Freehof", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Walter, Jacob, Frederick C. Schwartz and Vigdor Kavaler. editors", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Walter, Jacob, Frederick C. Schwartz and Vigdor Kavaler. editors", + "fl": "Jacob Walter, Frederick C. Schwartz and Vigdor Kavaler. editors", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GSLO1K", + "publication": "Pittsburgh, Rodef Shalom Congregation (1964)", + "date": "1964", + "summary": "Essays in Honor of Solomon B. Freehof by Jacob Walter, Frederick C. Schwartz and Vigdor Kavaler. editors (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32662037", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"268809055": { + "books_id": "268809055", + "title": "What Religion Is and Does: an introduction to the study of itsproblems and values. Revised Edition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Horace T. Houf", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Horace T. Houf", + "fl": "Horace T. Houf", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B009EPSTCS", + "publication": "Harper & Bros c1935, 1945 (1935), Edition: \"C-X\" reprint", + "date": "1935", + "summary": "What Religion Is and Does: an introduction to the study of itsproblems and values. Revised Edition by Horace T. Houf (1935)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["201"], + "wording": ["Religion", + "Religion", + "Religious mythology, general classes of religion, interreligious relations and attitudes, social theology"] + }, + "lcc": { + "code": "BL48 .H6" + }, + "source": "amazon.com books", + "workcode": "13594185", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"268809264": { + "books_id": "268809264", + "title": "Shiurei Harav: A Conspectus of the Public Lectures of Rabbi Joseph B. Soloveitchik", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Soloveitchik, Joseph B.", + "primaryauthorrole": "Author", + "secondaryauthor": "Epstein, Joseph", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Soloveitchik, Joseph B.", + "fl": "Joseph B. Soloveitchik", + "role": "Author" + }, + { + "lf": "Epstein, Joseph", + "fl": "Joseph Epstein", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881254991", + "isbn": { + "0": "0881254991", + "2": "9780881254990" + }, + "asin": "0881254991", + "ean": ["0881254991"], + "publication": "Ktav Pub & Distributors Inc (1994), 190 pages", + "date": "1994", + "summary": "Shiurei Harav: A Conspectus of the Public Lectures of Rabbi Joseph B. Soloveitchik by Joseph B. Soloveitchik (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .S67" + }, + "source": "amazon.com books", + "workcode": "2293019", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "190 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "8.25 x 6 x 0.75 inches", + "weight": "1 pound", + "pages": "190 " +}, +"268809362": { + "books_id": "268809362", + "title": "Berl: The Biography of a Socialist Zionist, Berl Katznelson 1887-1944", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shapira, Anita", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shapira, Anita", + "fl": "Anita Shapira", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0C51JZ22P", + "publication": "Plunkett Lake Press (2023), 582 pages", + "date": "2023", + "summary": "Berl: The Biography of a Socialist Zionist, Berl Katznelson 1887-1944 by Anita Shapira (2023)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.K327 S52513" + }, + "source": "amazon.com books", + "workcode": "4493602", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"268809468": { + "books_id": "268809468", + "title": "Man of Faith in the Modern World: Reflections of the Rav (Vol 2) (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Soloveitchik, Joseph B.", + "primaryauthorrole": "Author", + "secondaryauthor": "Besdin, Abraham R.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Soloveitchik, Joseph B.", + "fl": "Joseph B. Soloveitchik", + "role": "Author" + }, + { + "lf": "Besdin, Abraham R.", + "fl": "Abraham R. Besdin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "088125312X", + "isbn": { + "0": "088125312X", + "2": "9780881253122" + }, + "asin": "088125312X", + "ean": ["088125312X"], + "publication": "Ktav Pub & Distributors Inc (1989), Edition: Not Indicated, 164 pages", + "date": "1989", + "summary": "Man of Faith in the Modern World: Reflections of the Rav (Vol 2) (English and Hebrew Edition) by Joseph B. Soloveitchik (1989)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .B47" + }, + "source": "amazon.com books", + "workcode": "1633777", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "164 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "8.5 x 6.25 x 0.75 inches", + "weight": "0.7495716908 pounds", + "pages": "164 " +}, +"268809557": { + "books_id": "268809557", + "title": "Reflections of the Rav: Lessons in Jewish Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Besdin, Abraham R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Besdin, Abraham R.", + "fl": "Abraham R. Besdin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0016CF7F4", + "publication": "DEPARTMENT FOR TORAH EDUCATION, 230 pages", + "summary": "Reflections of the Rav: Lessons in Jewish Thought by Abraham R. Besdin", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 .B47" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "58796", + "entrydate": "2024-07-31", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269313239": { + "books_id": "269313239", + "title": "The Musar movement: A quest for excellence in character education (Studies in Torah Judaism)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ury, Zalman F", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ury, Zalman F", + "fl": "Zalman F Ury", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CHDTI", + "publication": "Yeshiva University Press, Dept. of Special Publications : selling agents, Bloch Pub. Co (1970), 84 pages", + "date": "1970", + "summary": "The Musar movement: A quest for excellence in character education (Studies in Torah Judaism) by Zalman F Ury (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1285.M8 U79" + }, + "subject": [["Musar movement"]], + "source": "amazon.com books", + "workcode": "5143849", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269313525": { + "books_id": "269313525", + "title": "The Jews and the Crusaders: The Hebrew Chronicles of the First and Second Crusades", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Eidelberg, Shlomo", + "primaryauthorrole": "Editor", + "secondaryauthor": "Eidelberg, Shlomo", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Eidelberg, Shlomo", + "fl": "Shlomo Eidelberg", + "role": "Editor" + }, + { + "lf": "Eidelberg, Shlomo", + "fl": "Shlomo Eidelberg", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0881255416", + "isbn": { + "0": "0881255416", + "2": "9780881255416" + }, + "asin": "0881255416", + "ean": ["0881255416"], + "publication": "Ktav Pub & Distributors Inc (1996), Edition: First Edition, 186 pages", + "date": "1996", + "summary": "The Jews and the Crusaders: The Hebrew Chronicles of the First and Second Crusades by Shlomo Eidelberg (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.004"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS135.G31 J48" + }, + "source": "amazon.com books", + "workcode": "204317", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "186 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.75 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 0.75 inches", + "weight": "0.2 pounds", + "pages": "186 " +}, +"269313752": { + "books_id": "269313752", + "title": "The Jewish Way in Love & Marriage", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Lamm, Maurice", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lamm, Maurice", + "fl": "Maurice Lamm", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824604806", + "isbn": { + "0": "0824604806", + "2": "9780824604806" + }, + "asin": "0824604806", + "ean": ["0824604806"], + "publication": "Jonathan David Publishers (2008), 308 pages", + "date": "2008", + "summary": "The Jewish Way in Love & Marriage by Maurice Lamm (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.42"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "HQ525.J4 L29" + }, + "subject": { + "0": ["Marriage", + "Judaism"], + "1": ["Marriage", + "Religious aspects", + "Judaism"], + "2": ["Marriage (Jewish law)"], + "4": ["Marriage customs and rites, Jewish"] + }, + "source": "amazon.com books", + "workcode": "179251", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "308 p.; 9 inches", + "height": "9 inches", + "thickness": "0.69 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.69 inches", + "weight": "2.314853751 pounds", + "pages": "308 " +}, +"269313837": { + "books_id": "269313837", + "title": "The Echo of the Nazi Holocaust in Rabbinic Literature", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zimmels, H. J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zimmels, H. J.", + "fl": "H. J. Zimmels", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870684272", + "isbn": { + "0": "0870684272", + "2": "9780870684272" + }, + "asin": "0870684272", + "ean": ["0870684272"], + "publication": "Ktav Pub & Distributors Inc (1977), Edition: First Edition, 372 pages", + "date": "1977", + "summary": "The Echo of the Nazi Holocaust in Rabbinic Literature by H. J. Zimmels (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "D810.J4 Z55" + }, + "source": "amazon.com books", + "workcode": "11443125", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "372 " +}, +"269313946": { + "books_id": "269313946", + "title": "The Reform Movement in Judaism", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Philipson, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Philipson, David", + "fl": "David Philipson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B09128DGX3", + "publication": "Wipf & Stock (2021)", + "date": "2021", + "summary": "The Reform Movement in Judaism by David Philipson (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197 .P55" + }, + "subject": [["Judaism"], + ["Reform Judaism", + "History"]], + "source": "amazon.com books", + "workcode": "2471063", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"269316159": { + "books_id": "269316159", + "title": "Morning stars", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shazar, Zalman", + "authors": [{ + "lf": "Shazar, Zalman", + "fl": "Zalman Shazar" + }], + "collections_idA": [1], + "collections": ["Your library"], + "publication": "Philadelphia : Jewish Publ. Soc., 1967.", + "date": "1967", + "summary": "Morning stars by Zalman Shazar (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.S47 A313" + }, + "subject": [["Zionists", + "Biography"]], + "workcode": "3525752", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269316343": { + "books_id": "269316343", + "title": "Modern Philosophies of Judaism: A Study Of Recent Jewish Philosophies of Religion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Agus, Jacob B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agus, Jacob B.", + "fl": "Jacob B. Agus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000VFCWB4", + "publication": "Behrman's Jewish Book House (1941), Edition: Later paperback printing", + "date": "1941", + "summary": "Modern Philosophies of Judaism: A Study Of Recent Jewish Philosophies of Religion by Jacob B. Agus (1941)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560.A35" + }, + "subject": { + "0": ["Judaism"], + "2": ["Philosophy, Jewish"], + "4": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "2653503", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"269316410": { + "books_id": "269316410", + "title": "Basic Judaism (Harvest Book.)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Milton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinberg, Milton", + "fl": "Milton Steinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780156106986", + "isbn": ["9780156106986", + "0156106981"], + "asin": "0156106981", + "ean": ["0156106981"], + "publication": "Mariner Books (1965), Edition: First Edition, 192 pages", + "date": "1965", + "summary": "Basic Judaism (Harvest Book.) by Milton Steinberg (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560 .S8" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "29160", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 8.1 x 0.51 inches", + "height": "0.51 inches", + "thickness": "5.52 inches", + "length": "8.1 inches", + "dimensions": "0.51 x 8.1 x 5.52 inches", + "weight": "0.50044933474 pounds", + "pages": "192 " +}, +"269316499": { + "books_id": "269316499", + "title": "The Evolution of Jewish Thought: From Biblical Times to the Opening of the Modern Era", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Agus, Jacob Bernard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agus, Jacob Bernard", + "fl": "Jacob Bernard Agus", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0405052510", + "isbn": { + "0": "0405052510", + "2": "9780405052514" + }, + "asin": "0405052510", + "ean": ["0405052510"], + "publication": "Arno Press (1959)", + "date": "1959", + "summary": "The Evolution of Jewish Thought: From Biblical Times to the Opening of the Modern Era by Jacob Bernard Agus (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS113.A394" + }, + "source": "amazon.com books", + "workcode": "8308166", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"269316595": { + "books_id": "269316595", + "title": "The Book of Esther MeAm LoÕez (The Torah Anthology)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rabbi Yaakov (1689-1732) / Rabbi Aryeh Kaplan (trans.) Culi", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi Yaakov (1689-1732) / Rabbi Aryeh Kaplan (trans.) Culi", + "fl": "Rabbi Yaakov (1689-1732) / Rabbi Aryeh Kaplan (trans.) Culi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B005F0BD7Y", + "publication": "Maznaim Pub. Co. c.1978", + "summary": "The Book of Esther MeAm LoÕez (The Torah Anthology) by Rabbi Yaakov (1689-1732) / Rabbi Aryeh Kaplan (trans.) Culi", + "lcc": [], + "source": "amazon.com books", + "workcode": "32699897", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269316718": { + "books_id": "269316718", + "title": "The Art of Advocacy: A Plea for the Renaissance of the Trial Lawyer", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Stryker, Lloyd Paul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stryker, Lloyd Paul", + "fl": "Lloyd Paul Stryker", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "6028397318", + "isbn": { + "0": "6028397318", + "2": "9786028397315" + }, + "asin": "6028397318", + "ean": ["6028397318"], + "publication": "Equinox Publishing (2010), 290 pages", + "date": "2010", + "summary": "The Art of Advocacy: A Plea for the Renaissance of the Trial Lawyer by Lloyd Paul Stryker (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["347.73"], + "wording": ["Civil procedure and courts of the United States", + "Law", + "North America", + "Procedure and courts", + "Social sciences"] + }, + "lcc": { + "code": "KF353.S75" + }, + "subject": { + "0": ["Lawyers"], + "2": ["Lawyers", + "United States"], + "4": ["Trial practice"], + "6": ["Trial practice", + "United States"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "3805"], + "source": "amazon.com books", + "workcode": "2641509", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "290 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.65 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.65 inches", + "weight": "0.81791499202 pounds", + "pages": "290 " +}, +"269317946": { + "books_id": "269317946", + "title": "Community and Polity: The Organizational Dynamics of American Jewry (Jewish Communal & Public Affairs)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Elazar, Daniel J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elazar, Daniel J.", + "fl": "Daniel J. Elazar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "082760565X", + "isbn": { + "0": "082760565X", + "2": "9780827605657" + }, + "asin": "082760565X", + "ean": ["082760565X"], + "publication": "JEWISH PUBLICATON SOCIETY (1995), Edition: Revised ed., 672 pages", + "date": "1995", + "summary": "Community and Polity: The Organizational Dynamics of American Jewry (Jewish Communal & Public Affairs) by Daniel J. Elazar (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "E184.J5 E39" + }, + "subject": [["Jews", + "United States", + "Politics and government"], + ["United States", + "Politics and Government"], + ["United States", + "Politics and government"]], + "source": "amazon.com books", + "workcode": "667070", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "672 p.; 9.17 inches", + "height": "9.17 inches", + "thickness": "1.06 inches", + "length": "6.16 inches", + "dimensions": "9.17 x 6.16 x 1.06 inches", + "weight": "1.5 pounds", + "pages": "672 " +}, +"269318141": { + "books_id": "269318141", + "title": "Jewish Book Annual: The American Year Book of Jewish Literary Creativity Volume 45 1987-1988", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Editor Jacob Kabakoff", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Editor Jacob Kabakoff", + "fl": "Editor Jacob Kabakoff", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B004UIMF6K", + "publication": "Jewish Book Council (1987)", + "date": "1987", + "summary": "Jewish Book Annual: The American Year Book of Jewish Literary Creativity Volume 45 1987-1988 by Editor Jacob Kabakoff (1987)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32700006", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"269318597": { + "books_id": "269318597", + "title": "World of the Yeshiva: An Intimate Portrait of Orthodox Jewry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Helmreich, William B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Helmreich, William B.", + "fl": "William B. Helmreich", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0029146402", + "isbn": { + "0": "0029146402", + "2": "9780029146408" + }, + "asin": "0029146402", + "ean": ["0029146402"], + "publication": "Free Pr (1982), Edition: First Edition, 412 pages", + "date": "1982", + "summary": "World of the Yeshiva: An Intimate Portrait of Orthodox Jewry by William B. Helmreich (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.07"], + "wording": ["Education And Research", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM75 .H44" + }, + "source": "amazon.com books", + "workcode": "2602884", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "412 p.", + "weight": "1.543235834 pounds", + "pages": "412 " +}, +"269318943": { + "books_id": "269318943", + "title": "Gates to the New City: A Treasury of Modern Jewish Tales", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schwartz, Howard", + "primaryauthorrole": "Other Contributor", + "authors": [{ + "lf": "Schwartz, Howard", + "fl": "Howard Schwartz", + "role": "Other Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0380810913", + "isbn": { + "0": "0380810913", + "2": "9780380810918" + }, + "asin": "0380810913", + "ean": ["0380810913"], + "publication": "Avon Books (1983), 815 pages", + "date": "1983", + "summary": "Gates to the New City: A Treasury of Modern Jewish Tales by Howard Schwartz (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["808.83"], + "wording": ["Collections of fiction", + "Collections of literary texts from more than two literatures", + "Literature", + "Literature, rhetoric & criticism", + "Rhetoric and collections of literary texts from more than two literatures"] + }, + "lcc": { + "code": "PN6071.J5 G3" + }, + "subject": [["Aggada", + "Translations into English"], + ["Bible. O.T.", + "Legends"], + ["Cabala", + "Fiction"], + ["Hasidim", + "Legends"], + ["Jewish fiction"], + ["Legends, Jewish"], + ["Short stories, Jewish"]], + "source": "amazon.com books", + "workcode": "2407128", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "815 p.", + "weight": "1.55 pounds", + "pages": "815 " +}, +"269319034": { + "books_id": "269319034", + "title": "Less Than Slaves: Jewish Forced Labor and the Quest for Compensation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ferencz, Benjamin B.", + "primaryauthorrole": "Author", + "secondaryauthor": "Taylor, Telford", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Ferencz, Benjamin B.", + "fl": "Benjamin B. Ferencz", + "role": "Author" + }, + { + "lf": "Taylor, Telford", + "fl": "Telford Taylor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0253215307", + "isbn": { + "0": "0253215307", + "2": "9780253215307" + }, + "asin": "0253215307", + "ean": ["0253215307"], + "publication": "Indiana University Press (2002), 272 pages", + "date": "2002", + "summary": "Less Than Slaves: Jewish Forced Labor and the Quest for Compensation by Benjamin B. Ferencz (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 F42" + }, + "subject": [["Holocaust, Jewish (1939-1945)"], + ["Holocaust, Jewish (1939-1945)", + "Reparations"], + ["Slave labor", + "Europe, Eastern"], + ["World War, 1939-1945", + "Claims"], + ["World War, 1939-1945", + "Conscript labor", + "Europe, Eastern"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "1092938", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "9 x 6 x 1 inches", + "weight": "1.00089866948 pounds", + "pages": "272 " +}, +"269319098": { + "books_id": "269319098", + "title": "Escape From Sobibor: The Heroic Story of the Jews Who Escaped from a Nazi Death Camp", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rashke, Richard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rashke, Richard", + "fl": "Richard Rashke", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0D5TLRYSL", + "publication": "Delphinium Books (2013), 390 pages", + "date": "2013", + "summary": "Escape From Sobibor: The Heroic Story of the Jews Who Escaped from a Nazi Death Camp by Richard Rashke (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D805.P7 R33" + }, + "source": "amazon.com books", + "workcode": "433174", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"269319148": { + "books_id": "269319148", + "title": "Images Of Moses", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Silver, Daniel Jeremy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Silver, Daniel Jeremy", + "fl": "Daniel Jeremy Silver", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "046503201X", + "isbn": { + "0": "046503201X", + "2": "9780465032013" + }, + "asin": "046503201X", + "ean": ["046503201X"], + "publication": "Basic Books (1982), 335 pages", + "date": "1982", + "summary": "Images Of Moses by Daniel Jeremy Silver (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.10924"], + "wording": ["Biography", + "Biography; By Place", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS580.M6 S483" + }, + "source": "amazon.com books", + "workcode": "5393499", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "335 p.", + "weight": "1.25 pounds", + "pages": "335 " +}, +"269319194": { + "books_id": "269319194", + "title": "Censorship and Freedom of Expression in Jewish History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Carmilly-Weinberger, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Carmilly-Weinberger, Moshe", + "fl": "Moshe Carmilly-Weinberger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0872030709", + "isbn": { + "0": "0872030709", + "2": "9780872030701" + }, + "asin": "0872030709", + "ean": ["0872030709"], + "publication": "Sepher-Hermon Press (1977), Edition: First Edition, 295 pages", + "date": "1977", + "summary": "Censorship and Freedom of Expression in Jewish History by Moshe Carmilly-Weinberger (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["363.3"], + "wording": ["Other aspects of public safety", + "Other social problems and services", + "Social problems and social services", + "Social sciences"] + }, + "lcc": { + "code": "BM729.C4 C29" + }, + "source": "amazon.com books", + "workcode": "5572089", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"269319655": { + "books_id": "269319655", + "title": "A critical edition with a translation and notes of the Book of tradition (Sefer ha-qabbalah) (Judaica : texts and translations)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Ibn Daud, Abraham ben David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ibn Daud, Abraham ben David", + "fl": "Abraham ben David Ibn Daud", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FBW2S", + "publication": "Jewish Publication Society of America (1967), 348 pages", + "date": "1967", + "summary": "A critical edition with a translation and notes of the Book of tradition (Sefer ha-qabbalah) (Judaica : texts and translations) by Abraham ben David Ibn Daud (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.09"], + "wording": ["History", + "History & geography", + "Other Geographic Classifications", + "World history"] + }, + "lcc": { + "code": "DS114.A513" + }, + "subject": [["Jews", + "History", + "Chronology"], + ["Tradition (Judaism)"]], + "series": ["Judaica, Texts and Translations"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "1427574", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "348 p.", + "weight": "0.5070632026 pounds", + "pages": "348 " +}, +"269319740": { + "books_id": "269319740", + "title": "The Torah: The Five Books of Moses, the New Translation of the Holy Scriptures According to the Traditional Hebrew Text", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jewish Publication Society Inc.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Jewish Publication Society Inc.", + "fl": "Jewish Publication Society Inc.", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600151", + "isbn": { + "0": "0827600151", + "2": "9780827600157" + }, + "asin": "0827600151", + "ean": ["0827600151"], + "publication": "JEWISH PUBLICATON SOCIETY (1992), Edition: 3, 394 pages", + "date": "1992", + "summary": "The Torah: The Five Books of Moses, the New Translation of the Holy Scriptures According to the Traditional Hebrew Text by Jewish Publication Society Inc. (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS12231963" + }, + "series": ["Holy Scriptures"], + "awards": ["Books That Changed the World"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "220757", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "394 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.25 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 1.25 inches", + "weight": "1.25002102554 pounds", + "pages": "394 " +}, +"269319925": { + "books_id": "269319925", + "title": "Notes on the New Translation of The Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Orlinsky, Harry M.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Orlinsky, Harry M.", + "fl": "Harry M. Orlinsky", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000OKWLVW", + "publication": "Jewish Publication Society (1969), 288 pages", + "date": "1969", + "summary": "Notes on the New Translation of The Torah by Harry M. Orlinsky (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1223" + }, + "source": "amazon.com books", + "workcode": "712310", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "288 p.", + "weight": "1.25 pounds", + "pages": "288 " +}, +"269319982": { + "books_id": "269319982", + "title": "Studies in Judaism / by S. Schechter", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schechter, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schechter, Solomon", + "fl": "Solomon Schechter", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B006RN8C8G", + "publication": "London : Adam and Charles Black (1896), Edition: First Edition", + "date": "1896", + "summary": "Studies in Judaism / by S. Schechter by Solomon Schechter (1896)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45 S34" + }, + "subject": [["Jews"], + ["Judaism"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "3229291", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"269320053": { + "books_id": "269320053", + "title": "A land of our own: An oral autobiography,", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Meir, Golda", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Meir, Golda", + "fl": "Golda Meir", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399110690", + "isbn": { + "0": "0399110690", + "2": "9780399110696" + }, + "asin": "0399110690", + "ean": ["0399110690"], + "publication": "G. P. Putnam's Sons (1973), Edition: Edition Unstated, 251 pages", + "date": "1973", + "summary": "A land of our own: An oral autobiography, by Golda Meir (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.M42 A36" + }, + "subject": [["Israel", + "Politics and government", + "1948-1967"], + ["Israel", + "Politics and government", + "1967-1993"], + ["Meir, Golda, 1898-1978"], + ["Women prime ministers", + "Israel", + "Biography"]], + "source": "amazon.com books", + "workcode": "2215091", + "entrydate": "2024-08-08", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "251 p.", + "height": "8.3 inches", + "thickness": "1.1 inches", + "length": "6 inches", + "dimensions": "8.3 x 6 x 1.1 inches", + "weight": "1.05 pounds", + "pages": "251 " +}, +"269814395": { + "books_id": "269814395", + "title": "Jerzy Kosinski: Literary Alarm Clock", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sherwin, Byron L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sherwin, Byron L.", + "fl": "Byron L. Sherwin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0941542009", + "isbn": { + "0": "0941542009", + "2": "9780941542005" + }, + "asin": "0941542009", + "ean": ["0941542009"], + "publication": "Cabala Pr, Edition: 1st US Edition", + "summary": "Jerzy Kosinski: Literary Alarm Clock by Byron L. Sherwin", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3561.O8 Z87" + }, + "source": "amazon.com books", + "workcode": "4821160", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "8.5 inches", + "height": "8.5 inches", + "thickness": "0.25 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.25 inches", + "weight": "0.3 pounds" +}, +"269814605": { + "books_id": "269814605", + "title": "Response: A Contemporary Jewish Review (Spring 1972, no. 13: Issue of the Arts).", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bill (ed. ) Novak", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bill (ed. ) Novak", + "fl": "Bill (ed. ) Novak", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00GCQ36Q6", + "publication": "Boston: Response, 1972 (1972)", + "date": "1972", + "summary": "Response: A Contemporary Jewish Review (Spring 1972, no. 13: Issue of the Arts). by Bill (ed. ) Novak (1972)", + "language": ["Undetermined"], + "language_codeA": ["und"], + "originallanguage_codeA": ["und"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32737775", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "weight": "0.992080179 pounds" +}, +"269815307": { + "books_id": "269815307", + "title": "Fighter and Prophet; The Jabotinsky Story; The Last Years", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schechtman, Joseph B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schechtman, Joseph B.", + "fl": "Joseph B. Schechtman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B07JYGQS5D", + "publication": "Thomas Yoseloff, NY (1961), Edition: First Edition, no additional pri", + "date": "1961", + "summary": "Fighter and Prophet; The Jabotinsky Story; The Last Years by Joseph B. Schechtman (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.Z5 S23" + }, + "source": "amazon.com books", + "workcode": "5004473", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"269815390": { + "books_id": "269815390", + "title": "The Torah: The Five Books of Moses, the New Translation of the Holy Scriptures According to the Traditional Hebrew Text", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jewish Publication Society Inc.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Jewish Publication Society Inc.", + "fl": "Jewish Publication Society Inc.", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600151", + "isbn": { + "0": "0827600151", + "2": "9780827600157" + }, + "asin": "0827600151", + "ean": ["0827600151"], + "publication": "JEWISH PUBLICATON SOCIETY (1992), Edition: 3, 394 pages", + "date": "1992", + "summary": "The Torah: The Five Books of Moses, the New Translation of the Holy Scriptures According to the Traditional Hebrew Text by Jewish Publication Society Inc. (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS12231963" + }, + "series": ["Holy Scriptures"], + "awards": ["Books That Changed the World"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "220757", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "394 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.25 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 1.25 inches", + "weight": "1.25002102554 pounds", + "pages": "394 " +}, +"269815531": { + "books_id": "269815531", + "title": "Tsar Nicholas I and the Jews: The transformation of Jewish society in Russia, 1825-1855", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stanislawski, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stanislawski, Michael", + "fl": "Michael Stanislawski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602162", + "isbn": { + "0": "0827602162", + "2": "9780827602168" + }, + "asin": "0827602162", + "ean": ["0827602162"], + "publication": "Jewish Publication Society of America (1983), Edition: First Edition, 246 pages", + "date": "1983", + "summary": "Tsar Nicholas I and the Jews: The transformation of Jewish society in Russia, 1825-1855 by Michael Stanislawski (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.004924"], + "wording": ["Ethnic minorities", + "History & geography", + "History of Europe", + "Jews", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.R9 S77" + }, + "subject": [["Jews", + "Russia", + "History"], + ["Russia", + "Ethnic relations"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "4487528", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "246 p.", + "weight": "0.000625 pounds", + "pages": "246 " +}, +"269815904": { + "books_id": "269815904", + "title": "Modern Jewish religious movements: A history of emancipation and adjustment", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rudavsky, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rudavsky, David", + "fl": "David Rudavsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874412862", + "isbn": { + "0": "0874412862", + "2": "9780874412864" + }, + "asin": "0874412862", + "ean": ["0874412862"], + "upc": ["000874412862"], + "publication": "Behrman House (1979), Edition: 3rd, 460 pages", + "date": "1979", + "summary": "Modern Jewish religious movements: A history of emancipation and adjustment by David Rudavsky (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM190 .R8" + }, + "source": "amazon.com books", + "workcode": "1174829", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "460 p.", + "height": "8.3 inches", + "thickness": "1.3 inches", + "length": "5.4 inches", + "dimensions": "8.3 x 5.4 x 1.3 inches", + "weight": "1.1 pounds", + "pages": "460 " +}, +"269816318": { + "books_id": "269816318", + "title": "Tefillin", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hammer, rober", + "authors": [{ + "lf": "Hammer, rober", + "fl": "rober Hammer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "Tefillin by rober Hammer", + "lcc": { + "code": "BM657. P5H3" + }, + "source": "manual entry", + "workcode": "32737949", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269816796": { + "books_id": "269816796", + "title": "Intermarriage", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eisenstein, Ira", + "authors": [{ + "lf": "Eisenstein, Ira", + "fl": "Ira Eisenstein" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "Intermarriage by Ira Eisenstein", + "lcc": { + "code": "HQ1031.E4.8" + }, + "source": "manual entry", + "workcode": "32737986", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269816998": { + "books_id": "269816998", + "title": "The Grace", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Garfield, Evelyn", + "authors": [{ + "lf": "Garfield, Evelyn", + "fl": "Evelyn Garfield" + }], + "collections_idA": [1], + "collections": ["Your library"], + "date": "1963", + "summary": "The Grace by Evelyn Garfield (1963)", + "lcc": { + "code": "BM675.G763" + }, + "source": "manual entry", + "workcode": "32738007", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269817112": { + "books_id": "269817112", + "title": "The first words of prayer", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Reiner, Jack.", + "authors": [{ + "lf": "Reiner, Jack.", + "fl": "Jack. Reiner" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "The first words of prayer by Jack. Reiner", + "lcc": { + "code": "BM660.R5" + }, + "source": "manual entry", + "workcode": "32738023", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269817184": { + "books_id": "269817184", + "title": "Synagogue Life: A Study in Symbolic Interaction", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heilman, Samuel C.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Heilman, Samuel C.", + "fl": "Samuel C. Heilman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0765804336", + "isbn": { + "0": "0765804336", + "2": "9780765804334" + }, + "asin": "0765804336", + "ean": ["0765804336"], + "publication": "Routledge (1998), 350 pages", + "date": "1998", + "summary": "Synagogue Life: A Study in Symbolic Interaction by Samuel C. Heilman (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM205" + }, + "source": "amazon.com books", + "workcode": "2578700", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "350 p.; 9 inches", + "height": "9 inches", + "thickness": "0.79 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.79 inches", + "weight": "1.14860838502 pounds", + "pages": "350 " +}, +"269817242": { + "books_id": "269817242", + "title": "Cosmopolitans and Parochials: Modern Orthodox Jews in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Heilman, Samuel C.", + "primaryauthorrole": "Author", + "secondaryauthor": "Cohen, Steven M.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Heilman, Samuel C.", + "fl": "Samuel C. Heilman", + "role": "Author" + }, + { + "lf": "Cohen, Steven M.", + "fl": "Steven M. Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226324966", + "isbn": { + "0": "0226324966", + "2": "9780226324968" + }, + "asin": "0226324966", + "ean": ["0226324966"], + "publication": "University of Chicago Press (1989), Edition: 1, 258 pages", + "date": "1989", + "summary": "Cosmopolitans and Parochials: Modern Orthodox Jews in America by Samuel C. Heilman (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.6"], + "wording": ["Groups of people", + "Religious groups", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "BM205 .H42" + }, + "source": "amazon.com books", + "workcode": "1174687", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "258 p.; 9 inches", + "height": "9 inches", + "thickness": "0.6 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.6 inches", + "weight": "0.81350574678 pounds", + "pages": "258 " +}, +"269817687": { + "books_id": "269817687", + "title": "Leader\u2019s Guide to Milton Steinberg\u2019s Basic Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Levin, Sarah", + "authors": [{ + "lf": "Levin, Sarah", + "fl": "Sarah Levin" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "Leader\u2019s Guide to Milton Steinberg\u2019s Basic Judaism by Sarah Levin", + "lcc": { + "code": "A77.B14" + }, + "comment": "Catalogued as a Special collections at the Hebrew university college", + "source": "manual entry", + "workcode": "32738074", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269817758": { + "books_id": "269817758", + "title": "The Talmud and you (Hadassah Talmud series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kirschenbaum, Aaron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kirschenbaum, Aaron", + "fl": "Aaron Kirschenbaum", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006E5RXA", + "publication": "Hadassah Education Dept (1967)", + "date": "1967", + "summary": "The Talmud and you (Hadassah Talmud series) by Aaron Kirschenbaum (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .K57" + }, + "source": "amazon.com books", + "workcode": "8584701", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269817861": { + "books_id": "269817861", + "title": "The Talmud and you (Hadassah Talmud series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kirschenbaum, Aaron", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kirschenbaum, Aaron", + "fl": "Aaron Kirschenbaum", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006E5RXA", + "publication": "Hadassah Education Dept (1967)", + "date": "1967", + "summary": "The Talmud and you (Hadassah Talmud series) by Aaron Kirschenbaum (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503 .K57" + }, + "source": "amazon.com books", + "workcode": "8584701", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269817933": { + "books_id": "269817933", + "title": "Pupil's Workbook for Genesis (To be used with the Sedrah Method of Humosh Instruction)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Louis", + "fl": "Louis Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001EMAV8E", + "publication": "Board of Jewish Education (1942), 52 pages", + "date": "1942", + "summary": "Pupil's Workbook for Genesis (To be used with the Sedrah Method of Humosh Instruction) by Louis Kaplan (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32738093", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269818445": { + "books_id": "269818445", + "title": "Jewish Family Life: the duty of the woman", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hoeing, Rabbi Sidney", + "authors": [{ + "lf": "Hoeing, Rabbi Sidney", + "fl": "Rabbi Sidney Hoeing" + }], + "collections_idA": [1], + "collections": ["Your library"], + "summary": "Jewish Family Life: the duty of the woman by Rabbi Sidney Hoeing", + "lcc": { + "code": "A-2017.22" + }, + "comment": "Catalogued as a special collection at Hebrew Union College Library", + "source": "manual entry", + "workcode": "32738135", + "entrydate": "2024-08-15", + "copies": "1", + "volumes": "1" +}, +"269818499": { + "books_id": "269818499", + "title": "Pupil's workbook for Exodus: To be used with the Sedrah method of Humosh instruction (Humosh sedrah course)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Louis L", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Louis L", + "fl": "Louis L Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007I0HHQ", + "publication": "Board of Jewish Education (1942)", + "date": "1942", + "summary": "Pupil's workbook for Exodus: To be used with the Sedrah method of Humosh instruction (Humosh sedrah course) by Louis L Kaplan (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32738145", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269818637": { + "books_id": "269818637", + "title": "The Book of Deuteronomy: An Outline and Interpretation of the Weekly Sedroth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaplan, Louis L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Louis L.", + "fl": "Louis L. Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000J0NNM8", + "publication": "Board of Jewish Education (1955), 72 pages", + "date": "1955", + "summary": "The Book of Deuteronomy: An Outline and Interpretation of the Weekly Sedroth by Louis L. Kaplan (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "5700564", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"269819248": { + "books_id": "269819248", + "title": "The Books of Leviticus and Numbers, An Outline and Interpretation of the Weekly Sedroth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kaplan, Louis L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Louis L.", + "fl": "Louis L. Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000T9KGVK", + "publication": "Board of Jewish Education, Baltimore MD (1951)", + "date": "1951", + "summary": "The Books of Leviticus and Numbers, An Outline and Interpretation of the Weekly Sedroth by Louis L. Kaplan (1951)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "27662542", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"269819458": { + "books_id": "269819458", + "title": "Spiritual Resistance: Art from Concentration Camps 1940-1945", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Novitch, Miriam ; Dawidowicz, Lucy ; Freudenheim, Tom L. [Eds.]", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Novitch, Miriam ; Dawidowicz, Lucy ; Freudenheim, Tom L. [Eds.]", + "fl": "Miriam ; Dawidowicz Novitch, Lucy ; Freudenheim, Tom L. [Eds.]", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001QB7HSA", + "publication": "Union of American Hebrew Congregations (1981), Edition: Limited Edition", + "date": "1981", + "summary": "Spiritual Resistance: Art from Concentration Camps 1940-1945 by Miriam ; Dawidowicz Novitch, Lucy ; Freudenheim, Tom L. [Eds.] (1981)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage_codeA": ["eng", + "und"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32738632", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "2.9 pounds" +},"269820413": { + "books_id": "269820413", + "title": "The American Jewish Album : 1654 to the Present", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Schoener, Allon", + "primaryauthorrole": "Author", + "secondaryauthor": "Feingold, Henry", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Schoener, Allon", + "fl": "Allon Schoener", + "role": "Author" + }, + { + "lf": "Feingold, Henry", + "fl": "Henry Feingold", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0847805921", + "isbn": { + "0": "0847805921", + "2": "9780847805921" + }, + "asin": "0847805921", + "ean": ["0847805921"], + "publication": "Rizzoli International Publications (1985), 342 pages", + "date": "1985", + "summary": "The American Jewish Album : 1654 to the Present by Allon Schoener (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04924"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "Jewish Americans", + "Other Groups", + "United States", + "United States"] + }, + "lcc": { + "code": "E184.J5 A367" + }, + "subject": [["Jews", + "United States", + "History", + "Sources"], + ["Jews", + "United States", + "Sources"], + ["United States", + "Ethnic relations", + "Sources"], + ["United States", + "Sources"]], + "source": "amazon.com books", + "workcode": "643531", + "entrydate": "2024-08-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "342 p.", + "weight": "3.2 pounds", + "pages": "342 " +}, +"270015829": { + "books_id": "270015829", + "title": "The Autobiography of Roy Cohn", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cohn, Roy M.", + "primaryauthorrole": "Author", + "secondaryauthor": "Zion, Sidney", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Cohn, Roy M.", + "fl": "Roy M. Cohn", + "role": "Author" + }, + { + "lf": "Zion, Sidney", + "fl": "Sidney Zion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081840471X", + "isbn": { + "0": "081840471X", + "2": "9780818404719" + }, + "asin": "081840471X", + "ean": ["081840471X"], + "publication": "Lyle Stuart (1988), 284 pages", + "date": "1988", + "summary": "The Autobiography of Roy Cohn by Roy M. Cohn (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["340.092"], + "wording": ["Biography", + "Biography And History", + "Law", + "Law", + "Law", + "Social sciences"] + }, + "lcc": { + "code": "KF373.C62 A3" + }, + "awards": ["The New York Times Notable Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "9665461", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "284 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1 pound", + "pages": "284 " +}, +"270015845": { + "books_id": "270015845", + "title": "Israel among the nations", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Talmon, J. L", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Talmon, J. L", + "fl": "J. L Talmon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CFSR2", + "publication": "Macmillan (1971), Edition: [1st American ed.], 199 pages", + "date": "1971", + "summary": "Israel among the nations by J. L Talmon (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS143" + }, + "source": "amazon.com books", + "workcode": "1830518", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270015884": { + "books_id": "270015884", + "title": "Essays in Modern Jewish History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Malino, Frances", + "primaryauthorrole": "Author", + "secondaryauthor": "Albert, Phyllis Cohen", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Malino, Frances", + "fl": "Frances Malino", + "role": "Author" + }, + { + "lf": "Albert, Phyllis Cohen", + "fl": "Phyllis Cohen Albert", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0838630952", + "isbn": { + "0": "0838630952", + "2": "9780838630952" + }, + "asin": "0838630952", + "ean": ["0838630952"], + "publication": "UNKNO (1982), Edition: First Edition, 500 pages", + "date": "1982", + "summary": "Essays in Modern Jewish History by Frances Malino (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS124.E85" + }, + "source": "amazon.com books", + "workcode": "11065589", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "500 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.25 inches", + "weight": "1.3999353637 pounds", + "pages": "500 " +}, +"270015918": { + "books_id": "270015918", + "title": "Studies in Jewish Thought", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rawidowicz, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rawidowicz, Simon", + "fl": "Simon Rawidowicz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600569", + "isbn": { + "0": "0827600569", + "2": "9780827600560" + }, + "asin": "0827600569", + "ean": ["0827600569"], + "publication": "Jewish Publication Society (1974)", + "date": "1974", + "summary": "Studies in Jewish Thought by Simon Rawidowicz (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.3"], + "wording": ["Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Palestine; Israel", + "Philosophy & psychology"] + }, + "lcc": { + "code": "DS102 .R37" + }, + "subject": [["Jews", + "History", + "Philosophy"], + ["Philosophy, Jewish"], + ["Rawidowicz, Simon, 1897-1957"]], + "source": "amazon.com books", + "workcode": "2693405", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270015926": { + "books_id": "270015926", + "title": "Only a Path", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rivka Guber", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rivka Guber", + "fl": "Rivka Guber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001JTCGXU", + "publication": "Massada", + "summary": "Only a Path by Rivka Guber", + "lcc": [], + "source": "amazon.com books", + "workcode": "3682114", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"270015946": { + "books_id": "270015946", + "title": "Revolution in Judaea", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Maccoby, Hyam", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Maccoby, Hyam", + "fl": "Hyam Maccoby", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080086784X", + "isbn": { + "0": "080086784X", + "2": "9780800867843" + }, + "asin": "080086784X", + "ean": ["080086784X"], + "publication": "Taplinger Pub Co (1980), Edition: First Edition, 256 pages", + "date": "1980", + "summary": "Revolution in Judaea by Hyam Maccoby (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["232.9"], + "wording": ["Christianity", + "Family and life of Jesus", + "Jesus Christ and his family", + "Religion"] + }, + "lcc": { + "code": "BM620 .M3" + }, + "subject": [["Jesus Christ", + "Jewish interpretations"], + ["Judaism", + "History", + "Post-exilic period, 586 B.C.-210 A.D"], + ["Palestine", + "History", + "To 70 A.D"]], + "source": "amazon.com books", + "workcode": "482023", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "6.75 inches", + "dimensions": "8.5 x 6.75 x 1 inches", + "weight": "1.00089866948 pounds", + "pages": "256 " +}, +"270015983": { + "books_id": "270015983", + "title": "Judaism: Law and Ethics", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chief Rabbi Dr Isaac Herzog", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chief Rabbi Dr Isaac Herzog", + "fl": "Chief Rabbi Dr Isaac Herzog", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0900689730", + "isbn": { + "0": "0900689730", + "2": "9780900689734" + }, + "asin": "0900689730", + "ean": ["0900689730"], + "publication": "The Soncino Press (1974), Edition: First Edition, 227 pages", + "date": "1974", + "summary": "Judaism: Law and Ethics by Chief Rabbi Dr Isaac Herzog (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "9937827", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270015987": { + "books_id": "270015987", + "title": "Studies in Jewish law, custom, and folklore", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lauterbach, Jacob Zallel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lauterbach, Jacob Zallel", + "fl": "Jacob Zallel Lauterbach", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870680137", + "isbn": { + "0": "0870680137", + "2": "9780870680137" + }, + "asin": "0870680137", + "ean": ["0870680137"], + "publication": "Ktav Pub. House (1970), 253 pages", + "date": "1970", + "summary": "Studies in Jewish law, custom, and folklore by Jacob Zallel Lauterbach (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM700 .L3" + }, + "source": "amazon.com books", + "workcode": "8401073", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270016004": { + "books_id": "270016004", + "title": "The man who loved laughter;: The story of Sholom Aleichem (Covenant books, 21)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Falstein, Louis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Falstein, Louis", + "fl": "Louis Falstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BV0W0", + "publication": "Jewish Publication Society of America (1968), Edition: First Edition, 154 pages", + "date": "1968", + "summary": "The man who loved laughter;: The story of Sholom Aleichem (Covenant books, 21) by Louis Falstein (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.49"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PJ5129.R2 Z59" + }, + "subject": [["Sholem Aleichem, 1859-1916"]], + "series": ["Covenant books"], + "genre": ["Fiction", + "Biography & Memoir", + "Tween"], + "genre_id": ["17160326", + "1240", + "1191"], + "source": "amazon.com books", + "workcode": "3584175", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "154 p.", + "weight": "1 pound", + "pages": "154 " +}, +"270016009": { + "books_id": "270016009", + "title": "The Frank Talmage memorial volume", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9653110144", + "isbn": { + "0": "9653110144", + "2": "9789653110144" + }, + "asin": "9653110144", + "ean": ["9653110144"], + "publication": "University Press of New England in association with Brandeis University Press (1993), 349 pages", + "date": "1993", + "summary": "The Frank Talmage memorial volume by unknown author (1993)", + "language": ["English", + "Hebrew"], + "language_codeA": ["eng", + "heb"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1160 .F74" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc.", + "History"], + ["Bible. O.T.", + "Criticism, interpretation, etc., Jewish"], + ["Christianity and other religions", + "Judaism"], + ["Judaism", + "Relations", + "Christianity"]], + "source": "amazon.com books", + "workcode": "3183220", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"270016048": { + "books_id": "270016048", + "title": "The Passover Seder: Afikoman in Exile", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Fredman, Ruth Gruber", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fredman, Ruth Gruber", + "fl": "Ruth Gruber Fredman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812277880", + "isbn": { + "0": "0812277880", + "2": "9780812277883" + }, + "asin": "0812277880", + "ean": ["0812277880"], + "publication": "University of Pennsylvania Press (1981), 192 pages", + "date": "1981", + "summary": "The Passover Seder: Afikoman in Exile by Ruth Gruber Fredman (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.P35 C46" + }, + "subject": [["Haggadah"], + ["Haggadot", + "Texts", + "History and criticism"], + ["Judaism", + "Liturgy", + "Texts", + "History and criticism"], + ["Seder"], + ["Seder", + "Liturgy", + "Texts", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "1591162", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 9 inches", + "height": "9 inches", + "length": "6 inches", + "dimensions": "9 x 6 inches", + "weight": "1.05 pounds", + "pages": "192 " +}, +"270016133": { + "books_id": "270016133", + "title": "Finding Our Way: Jewish Texts and the Lives We Lead Today", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Holtz, Barry W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Holtz, Barry W.", + "fl": "Barry W. Holtz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827608187", + "isbn": { + "0": "0827608187", + "2": "9780827608184" + }, + "asin": "0827608187", + "ean": ["0827608187"], + "publication": "JEWISH PUBLICATON SOCIETY (2005), 280 pages", + "date": "2005", + "summary": "Finding Our Way: Jewish Texts and the Lives We Lead Today by Barry W. Holtz (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .H65" + }, + "subject": [["Jewish way of life"], + ["Judaism", + "20th century"], + ["Tradition (Judaism)"]], + "source": "amazon.com books", + "workcode": "2779350", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "280 p.; 9 inches", + "height": "9 inches", + "thickness": "0.64 inches", + "length": "6.1 inches", + "dimensions": "9 x 6.1 x 0.64 inches", + "weight": "0.9 pounds", + "pages": "280 " +}, +"270016140": { + "books_id": "270016140", + "title": "Book of Memoirs, Portraits and Appraisals: 1. Sages of Odessa, 2. Personalities and Scribes (in Hebrew)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rav Tzair", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rav Tzair", + "fl": "Rav Tzair", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0038BQ0OS", + "publication": "New York, The Jubilee Committee (1945)", + "date": "1945", + "summary": "Book of Memoirs, Portraits and Appraisals: 1. Sages of Odessa, 2. Personalities and Scribes (in Hebrew) by Rav Tzair (1945)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32755942", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270016164": { + "books_id": "270016164", + "title": "Concise history of Israel: from Abraham to the Bar Cochba rebellion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Beek, Martinus Adrianus", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Beek, Martinus Adrianus", + "fl": "Martinus Adrianus Beek", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DMGMK", + "publication": "Harper & Row (1963), 224 pages", + "date": "1963", + "summary": "Concise history of Israel: from Abraham to the Bar Cochba rebellion by Martinus Adrianus Beek (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Dutch"], + "originallanguage_codeA": ["eng", + "dut"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS118 .B413" + }, + "source": "amazon.com books", + "workcode": "6763274", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270016166": { + "books_id": "270016166", + "title": "Back To The Sources: Reading the Classic Jewish Texts", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Holtz, Barry W.", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Holtz, Barry W.", + "fl": "Barry W. Holtz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671605968", + "isbn": { + "0": "0671605968", + "2": "9780671605964" + }, + "asin": "0671605968", + "ean": ["0671605968"], + "publication": "Simon & Schuster (1986), Edition: Reprint, 448 pages", + "date": "1986", + "summary": "Back To The Sources: Reading the Classic Jewish Texts by Barry W. Holtz (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM496 .B33" + }, + "subject": [["Judaism", + "History", + "Sources"], + ["Judaism", + "Sources"]], + "source": "amazon.com books", + "workcode": "109626", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "448 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.3 inches", + "length": "6.125 inches", + "dimensions": "9.25 x 6.125 x 1.3 inches", + "weight": "1.10010668738 pounds", + "pages": "448 " +}, +"270016212": { + "books_id": "270016212", + "title": "Essays", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Slonimsky, Henry", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Slonimsky, Henry", + "fl": "Henry Slonimsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BRHJ0", + "publication": "Hebrew Union College Press (1967), 148 pages", + "date": "1967", + "summary": "Essays by Henry Slonimsky (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.08"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM514.S54" + }, + "source": "amazon.com books", + "workcode": "15905262", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "148 p.", + "weight": "0.84 pounds", + "pages": "148 " +}, +"270016222": { + "books_id": "270016222", + "title": "Texts and responses: Studies presented to Nahum N. Glatzer on the occasion of his seventieth birthday by his students", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Michael A. and Paul R. Flohr, Eds. Fishbane", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Michael A. and Paul R. Flohr, Eds. Fishbane", + "fl": "Eds. Fishbane Michael A. and Paul R. Flohr", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9004039805", + "isbn": { + "0": "9004039805", + "2": "9789004039803" + }, + "asin": "9004039805", + "ean": ["9004039805"], + "publication": "Brill (1975), 325 pages", + "date": "1975", + "summary": "Texts and responses: Studies presented to Nahum N. Glatzer on the occasion of his seventieth birthday by his students by Eds. Fishbane Michael A. and Paul R. Flohr (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.09"], + "wording": ["Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM42.G547" + }, + "source": "amazon.com books", + "workcode": "23192851", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "325 " +}, +"270016303": { + "books_id": "270016303", + "title": "A Jewish Book of Days", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001760NVW", + "publication": "Edward Goldston (1931)", + "date": "1931", + "summary": "A Jewish Book of Days by Cecil Roth (1931)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.0974924"], + "wording": ["By Ethnicity", + "History", + "History & geography", + "Other Geographic Classifications", + "Socioeconomic Regions", + "World history"] + }, + "lcc": { + "code": "DS123.R6" + }, + "subject": [["Days"], + ["Jews", + "History"], + ["Jews", + "history"]], + "source": "amazon.com books", + "workcode": "4135623", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270016325": { + "books_id": "270016325", + "title": "Mentors and Friends (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kol, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kol, Moshe", + "fl": "Moshe Kol", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0845347411", + "isbn": { + "0": "0845347411", + "2": "9780845347416" + }, + "asin": "0845347411", + "ean": ["0845347411"], + "publication": "Associated Univ Pr (1983)", + "date": "1983", + "summary": "Mentors and Friends (English and Hebrew Edition) by Moshe Kol (1983)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.940010924"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.A2 K613" + }, + "source": "amazon.com books", + "workcode": "32755958", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.9259415004 pounds" +}, +"270016357": { + "books_id": "270016357", + "title": "The Schocken Guide to Jewish Books: Where to Start Reading about Jewish History, Literature, Culture and Religion", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Holtz, Barry W.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Holtz, Barry W.", + "fl": "Barry W. Holtz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805241086", + "isbn": { + "0": "0805241086", + "2": "9780805241082" + }, + "asin": "0805241086", + "ean": ["0805241086"], + "publication": "Schocken (1992), Edition: First Edition, 328 pages", + "date": "1992", + "summary": "The Schocken Guide to Jewish Books: Where to Start Reading about Jewish History, Literature, Culture and Religion by Barry W. Holtz (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["016.909"], + "wording": ["Bibliographies", + "Bibliographies and catalogs of works on specific subjects", + "Computer science, information & general works", + "History, Geography"] + }, + "lcc": { + "code": "Z6366 DS102 .95" + }, + "subject": { + "0": ["Jewish literature", + "Bibliography"], + "2": ["Jews", + "Bibliography"], + "4": ["Judaism", + "Bibliography"] + }, + "source": "amazon.com books", + "workcode": "378566", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "328 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "7.75 inches", + "dimensions": "9.5 x 7.75 x 1 inches", + "weight": "1.9 pounds", + "pages": "328 " +}, +"270016437": { + "books_id": "270016437", + "title": "Don Isaac Abravanel, Statesman and Philosopher", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Netanyahu, B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Netanyahu, B.", + "fl": "B. Netanyahu", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BULJS", + "publication": "Jewish Publication Society (1968), Edition: Second Edition, 350 pages", + "date": "1968", + "summary": "Don Isaac Abravanel, Statesman and Philosopher by B. Netanyahu (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.092"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.A25 N4" + }, + "subject": { + "0": ["Abravanel, Isaac, 1437-1508"], + "1": ["Jewish philosophers", + "Biography"], + "3": ["Jewish statesmen", + "Italy", + "Biography"], + "5": ["Jewish statesmen", + "Spain", + "Biography"], + "7": ["Rabbis", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "1172311", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "350 p.", + "weight": "1 pound", + "pages": "350 " +}, +"270016459": { + "books_id": "270016459", + "title": "Gym Shoes and Irises ( Personalized Tzedakah )", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Siegel, Danny", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Siegel, Danny", + "fl": "Danny Siegel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0940653001", + "isbn": { + "0": "0940653001", + "2": "9780940653009" + }, + "asin": "0940653001", + "ean": ["0940653001"], + "publication": "The Town House Press (1986), Edition: First Edition", + "date": "1986", + "summary": "Gym Shoes and Irises ( Personalized Tzedakah ) by Danny Siegel (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BJ1286.C5 S53" + }, + "subject": [["Charity"], + ["Jewish ethics"], + ["Jewish way of life"]], + "source": "amazon.com books", + "workcode": "1591508", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "height": "9.9 inches", + "thickness": "0.6 inches", + "length": "6.9 inches", + "dimensions": "9.9 x 6.9 x 0.6 inches", + "weight": "1 pound" +}, +"270016555": { + "books_id": "270016555", + "title": "A Passover Haggadah: As Commented Upon by Elie Wiesel and Illustrated by Mark Podwal", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Wiesel, Elie", + "primaryauthorrole": "Author", + "secondaryauthor": "Podwal, Mark", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Wiesel, Elie", + "fl": "Elie Wiesel", + "role": "Author" + }, + { + "lf": "Podwal, Mark", + "fl": "Mark Podwal", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671799967", + "isbn": { + "0": "0671799967", + "2": "9780671799960" + }, + "asin": "0671799967", + "ean": ["0671799967"], + "publication": "Simon & Schuster (1993), Edition: Illustrated, 144 pages", + "date": "1993", + "summary": "A Passover Haggadah: As Commented Upon by Elie Wiesel and Illustrated by Mark Podwal by Elie Wiesel (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.437"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Passover", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM674 .W54" + }, + "source": "amazon.com books", + "workcode": "21860364", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.3 inches", + "length": "7 inches", + "dimensions": "9.25 x 7 x 0.3 inches", + "weight": "0.59965735264 pounds", + "pages": "144 " +}, +"270016573": { + "books_id": "270016573", + "title": "501 Hebrew Verbs : Fully Conjugated in All the Tenses in a New Easy-To-Follow Format alphabetically Arranged by Root", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bolozky, Shmuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bolozky, Shmuel", + "fl": "Shmuel Bolozky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780812094688", + "isbn": ["9780812094688", + "0812094689"], + "asin": "0812094689", + "ean": ["0812094689"], + "publication": "B E S Pub Co (1996), 900 pages", + "date": "1996", + "summary": "501 Hebrew Verbs : Fully Conjugated in All the Tenses in a New Easy-To-Follow Format alphabetically Arranged by Root by Shmuel Bolozky (1996)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["492.4"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ4645 .B56" + }, + "subject": { + "0": ["Hebrew language", + "Tables"], + "1": ["Hebrew language", + "Usage"], + "3": ["Hebrew language", + "Verb", + "Tables"] + }, + "series": ["501 Verbs"], + "genre": ["Nonfiction", + "General Nonfiction", + "Reference"], + "genre_id": ["20275895", + "1247", + "4877"], + "source": "amazon.com books", + "workcode": "42622", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "900 p.; 9 inches", + "height": "9 inches", + "thickness": "2 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 2 inches", + "weight": "2.62570554042 pounds", + "pages": "900 " +}, +"270016584": { + "books_id": "270016584", + "title": "History of the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dubnov, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dubnov, Simon", + "fl": "Simon Dubnov", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0498064107", + "isbn": { + "0": "0498064107", + "2": "9780498064104" + }, + "asin": "0498064107", + "ean": ["0498064107"], + "publication": "Oak Tree Publications Inc, Edition: Second Edition, 900 pages", + "summary": "History of the Jews by Simon Dubnov", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["910.03"], + "wording": ["Geography & travel", + "History & geography", + "modified standard subdivisions of Geography and travel"] + }, + "lcc": { + "code": "DS117.D7213" + }, + "subject": [["Jews", + "History"]], + "source": "amazon.com books", + "workcode": "3665212", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "900 " +}, +"270016606": { + "books_id": "270016606", + "title": "Reconstructing Judaism: An Autobiography", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eisenstein, Ira", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eisenstein, Ira", + "fl": "Ira Eisenstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0935457372", + "isbn": { + "0": "0935457372", + "2": "9780935457377" + }, + "asin": "0935457372", + "ean": ["0935457372"], + "publication": "Reconstructionist Press (1986), Edition: First Edition, 242 pages", + "date": "1986", + "summary": "Reconstructing Judaism: An Autobiography by Ira Eisenstein (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.E46 A3" + }, + "source": "amazon.com books", + "workcode": "7834272", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "242 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1 inches", + "weight": "1.2 pounds", + "pages": "242 " +}, +"270016677": { + "books_id": "270016677", + "title": "The Dance of Leah: Discovering Yiddish in America", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Fein, Richard J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Fein, Richard J.", + "fl": "Richard J. Fein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0845348035", + "isbn": { + "0": "0845348035", + "2": "9780845348031" + }, + "asin": "0845348035", + "ean": ["0845348035"], + "publication": "Cornwall Books (1986), 152 pages", + "date": "1986", + "summary": "The Dance of Leah: Discovering Yiddish in America by Richard J. Fein (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["437.947"], + "wording": ["Eastern Europe; Russia [See 439.1 for Yiddish]", + "Geographic variations", + "Geographic variations in Europe", + "German & related languages", + "Historical and geographic variations, modern nongeographic variations of German", + "Language"] + }, + "lcc": { + "code": "PJ5119.U5 F4" + }, + "source": "amazon.com books", + "workcode": "19917867", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "152 p.; 9 inches", + "height": "9 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9 x 6.25 x 1 inches", + "weight": "0.9 pounds", + "pages": "152 " +}, +"270016707": { + "books_id": "270016707", + "title": "The Book of Human Destiny: 1: The Book of Books: An Introduction", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldman, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldman, Solomon", + "fl": "Solomon Goldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007IZLAY", + "publication": "Harper (1948), Edition: First Edition, 459 pages", + "date": "1948", + "summary": "The Book of Human Destiny: 1: The Book of Books: An Introduction by Solomon Goldman (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.7"], + "wording": ["Bible. O.T.--commentaries", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1151.G58" + }, + "subject": [["Bible. O.T.", + "Commentaries"]], + "series": ["The Book of Human Destiny"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2710145", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "459 p.", + "weight": "3 pounds", + "pages": "459 " +}, +"270016834": { + "books_id": "270016834", + "title": "Tradition and Change: The Development of Conservative Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabbi Mordecai Waxman", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Rabbi Mordecai Waxman", + "fl": "Rabbi Mordecai Waxman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000QFQARG", + "publication": "The Burning Bush Press (1958), Edition: 1st, 477 pages", + "date": "1958", + "summary": "Tradition and Change: The Development of Conservative Judaism by Rabbi Mordecai Waxman (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197.W3" + }, + "subject": [["Conservative Judaism"]], + "source": "amazon.com books", + "workcode": "3279697", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "477 p.", + "weight": "2.2 pounds", + "pages": "477 " +}, +"270016880": { + "books_id": "270016880", + "title": "The First Thousand Words in Hebrew", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Haron H Amery & Cartwright S", + "primaryauthorrole": "Author", + "secondaryauthor": "Ali", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Haron H Amery & Cartwright S", + "fl": "Haron H Amery & Cartwright S", + "role": "Author" + }, + { + "lf": "Ali", + "fl": "Ali", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000LEQ98W", + "publication": "USborne Pub. (1984)", + "date": "1984", + "summary": "The First Thousand Words in Hebrew by Haron H Amery & Cartwright S (1984)", + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["492.4"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ4838" + }, + "subject": [["Hebrew language", + "Vocabulary", + "Juvenile literature"]], + "series": ["Usborne First Thousand Words", + "First 1000 Words"], + "genre": ["Nonfiction", + "Children's Books"], + "genre_id": ["20275895", + "11"], + "source": "amazon.com books", + "workcode": "240948", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"270017099": { + "books_id": "270017099", + "title": "Arlosoroff (Jewish Thinkers Book 4)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Avineri, Shlomo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Avineri, Shlomo", + "fl": "Shlomo Avineri", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B094DFJTZJ", + "publication": "Halban (2021), 147 pages", + "date": "2021", + "summary": "Arlosoroff (Jewish Thinkers Book 4) by Shlomo Avineri (2021)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.A7" + }, + "source": "amazon.com books", + "workcode": "2980526", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"270017139": { + "books_id": "270017139", + "title": "Judaism: Law and Ethics", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chief Rabbi Dr Isaac Herzog", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chief Rabbi Dr Isaac Herzog", + "fl": "Chief Rabbi Dr Isaac Herzog", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0900689730", + "isbn": { + "0": "0900689730", + "2": "9780900689734" + }, + "asin": "0900689730", + "ean": ["0900689730"], + "publication": "The Soncino Press (1974), Edition: First Edition, 227 pages", + "date": "1974", + "summary": "Judaism: Law and Ethics by Chief Rabbi Dr Isaac Herzog (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "9937827", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270017233": { + "books_id": "270017233", + "title": "Zionism Reconsidered: The Rejection of Jewish Normalcy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Selzer, Michael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Selzer, Michael", + "fl": "Michael Selzer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000OLDT44", + "publication": "Macmillan (1970), Edition: First Edition", + "date": "1970", + "summary": "Zionism Reconsidered: The Rejection of Jewish Normalcy by Michael Selzer (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149.S49713" + }, + "subject": [["Zionism"]], + "source": "amazon.com books", + "workcode": "659431", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.2 pounds" +}, +"270017319": { + "books_id": "270017319", + "title": "Abarbanel And The Expulsion Of The Jews From Spain", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Minkin, Jacob S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Minkin, Jacob S", + "fl": "Jacob S Minkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1430464941", + "isbn": { + "0": "1430464941", + "2": "9781430464945" + }, + "asin": "1430464941", + "ean": ["1430464941"], + "publication": "Kessinger Publishing (2007), 248 pages", + "date": "2007", + "summary": "Abarbanel And The Expulsion Of The Jews From Spain by Jacob S Minkin (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM755.A25 M5" + }, + "source": "amazon.com books", + "workcode": "8684032", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "248 p.; 9 inches", + "height": "9 inches", + "thickness": "0.56 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.56 inches", + "weight": "0.81 pounds", + "pages": "248 " +}, +"270017501": { + "books_id": "270017501", + "title": "How to Run a Traditional Jewish Household", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenberg, Blu", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Blu", + "fl": "Blu Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688822", + "isbn": { + "0": "0876688822", + "2": "9780876688823" + }, + "asin": "0671602705", + "ean": ["0671602705"], + "publication": "Touchstone (1985), Edition: Reprint, 526 pages", + "date": "1985", + "summary": "How to Run a Traditional Jewish Household by Blu Greenberg (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM700 .G734" + }, + "subject": [["Judaism", + "Customs and practices"]], + "source": "amazon.com books", + "workcode": "29256", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "526 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.6 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 1.6 inches", + "weight": "1.5 pounds", + "pages": "526 " +}, +"270017543": { + "books_id": "270017543", + "title": "A History of Zionism: From the French Revolution to the Establishment of the State of Israel", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Laqueur, Walter", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Laqueur, Walter", + "fl": "Walter Laqueur", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211497", + "isbn": { + "0": "0805211497", + "2": "9780805211498" + }, + "asin": "0805211497", + "ean": ["0805211497"], + "publication": "Knopf Doubleday Publishing Group (2003), Edition: Reprint, 688 pages", + "date": "2003", + "summary": "A History of Zionism: From the French Revolution to the Establishment of the State of Israel by Walter Laqueur (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS149 .L256" + }, + "subject": { + "0": ["Zionism", + "History"], + "2": ["Zionism", + "history"] + }, + "source": "amazon.com books", + "workcode": "229666", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "688 p.; 7.95 inches", + "height": "7.95 inches", + "thickness": "1.54 inches", + "length": "5.23 inches", + "dimensions": "7.95 x 5.23 x 1.54 inches", + "weight": "1.2125 pounds", + "pages": "688 " +}, +"270017610": { + "books_id": "270017610", + "title": "Doesn't Anyone Blush Anymore?", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedman, Manis", + "primaryauthorrole": "Author", + "secondaryauthor": "Morris, J.S.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Friedman, Manis", + "fl": "Manis Friedman", + "role": "Author" + }, + { + "lf": "Morris, J.S.", + "fl": "J.S. Morris", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1477520317", + "isbn": { + "0": "1477520317", + "2": "9781477520314" + }, + "asin": "1477520317", + "ean": ["1477520317"], + "publication": "CreateSpace Independent Publishing Platform (2012), 144 pages", + "date": "2012", + "summary": "Doesn't Anyone Blush Anymore? by Manis Friedman (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM720.S4 F75" + }, + "source": "amazon.com books", + "workcode": "502101", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.33 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.33 inches", + "weight": "0.37919509064 pounds", + "pages": "144 " +}, +"270017628": { + "books_id": "270017628", + "title": "Menahem Ussishkin: His Life and Work", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klausner, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klausner, Joseph", + "fl": "Joseph Klausner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001Q8V3JM", + "publication": "Scopus Publishing (1942), Edition: First Edition", + "date": "1942", + "summary": "Menahem Ussishkin: His Life and Work by Joseph Klausner (1942)", + "language": ["Undetermined", + "German"], + "language_codeA": ["und", + "ger"], + "originallanguage": ["English"], + "originallanguage_codeA": ["und", + "ger", + "eng"], + "ddc": { + "code": ["923.247"], + "wording": ["Biography & genealogy", + "Europe", + "Government", + "History & geography", + "People in social sciences"] + }, + "lcc": { + "code": "DS151.U75 K55" + }, + "source": "amazon.com books", + "workcode": "8394697", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270017657": { + "books_id": "270017657", + "title": "Mentors and Friends (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kol, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kol, Moshe", + "fl": "Moshe Kol", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0845347411", + "isbn": { + "0": "0845347411", + "2": "9780845347416" + }, + "asin": "0845347411", + "ean": ["0845347411"], + "publication": "Associated Univ Pr (1983)", + "date": "1983", + "summary": "Mentors and Friends (English and Hebrew Edition) by Moshe Kol (1983)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.940010924"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.A2 K613" + }, + "source": "amazon.com books", + "workcode": "32755958", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.9259415004 pounds" +}, +"270017755": { + "books_id": "270017755", + "title": "The early history of Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Vaux, Roland de", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vaux, Roland de", + "fl": "Roland de Vaux", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0232512426", + "isbn": { + "0": "0232512426", + "2": "9780232512427" + }, + "asin": "0232512426", + "ean": ["0232512426"], + "publication": "Darton, Longman and Todd (1978), Edition: First Edition, 886 pages", + "date": "1978", + "summary": "The early history of Israel by Roland de Vaux (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.9"], + "wording": ["Geography, history, chronology, persons of Bible lands in Bible times", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "DS117.V3813" + }, + "subject": [["Jews", + "History", + "To 953 B.C"]], + "source": "amazon.com books", + "workcode": "729315", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "886 p.", + "weight": "0.7826410301 pounds", + "pages": "886 " +}, +"270017763": { + "books_id": "270017763", + "title": "Only a Path", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rivka Guber", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rivka Guber", + "fl": "Rivka Guber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001JTCGXU", + "publication": "Massada", + "summary": "Only a Path by Rivka Guber", + "lcc": [], + "source": "amazon.com books", + "workcode": "3682114", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"270017832": { + "books_id": "270017832", + "title": "Scorpions: The Battles and Triumphs of FDR's Great Supreme Court Justices", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feldman, Noah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feldman, Noah", + "fl": "Noah Feldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0446699284", + "isbn": { + "0": "0446699284", + "2": "9780446699280" + }, + "asin": "0446699284", + "ean": ["0446699284"], + "publication": "Twelve (2011), Edition: Reprint, 528 pages", + "date": "2011", + "summary": "Scorpions: The Battles and Triumphs of FDR's Great Supreme Court Justices by Noah Feldman (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["347.732634"], + "wording": ["Civil procedure and courts of the United States", + "Federal courts", + "Law", + "North America", + "Procedure and courts", + "Social sciences", + "Supreme Court"] + }, + "lcc": { + "code": "KF8744" + }, + "awards": ["100 Must-Read Books about the Law and Social Justice", + "American Bar Association Silver Gavel Award", + "National Jewish Book Award", + "SCRIBES Book Award", + "The New York Times Notable Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "9986912", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "528 p.; 8.05 inches", + "height": "8.05 inches", + "thickness": "1.45 inches", + "length": "5.45 inches", + "dimensions": "8.05 x 5.45 x 1.45 inches", + "weight": "1.00089866948 pounds", + "pages": "528 " +}, +"270017897": { + "books_id": "270017897", + "title": "Joseph Klausner", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kling, Simcha.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kling, Simcha.", + "fl": "Simcha. Kling", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B005J9JVCK", + "publication": "T. Yoseloff (1970)", + "date": "1970", + "summary": "Joseph Klausner by Simcha. Kling (1970)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32756104", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"270017939": { + "books_id": "270017939", + "title": "Studies in books and booklore; essays in Jewish bibliography and allied subjects", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0576801690", + "isbn": { + "0": "0576801690", + "2": "9780576801690" + }, + "asin": "0576801690", + "ean": ["0576801690"], + "publication": "Gregg International Publishers (1972), 59 pages", + "date": "1972", + "summary": "Studies in books and booklore; essays in Jewish bibliography and allied subjects by Cecil Roth (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["686.21924"], + "wording": ["Arabic and Hebrew", + "Letters and Alphabets", + "Manufacture for specific uses", + "Printing", + "Printing and related activities", + "Technology"] + }, + "lcc": { + "code": "Z228.H4 R68" + }, + "source": "amazon.com books", + "workcode": "5418095", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270018027": { + "books_id": "270018027", + "title": "Egypt and Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sachar, Howard M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard M.", + "fl": "Howard M. Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399901248", + "isbn": { + "0": "0399901248", + "2": "9780399901249" + }, + "asin": "0399901248", + "ean": ["0399901248"], + "publication": "Richard Marek Pubs (1981), Edition: First Edition", + "date": "1981", + "summary": "Egypt and Israel by Howard M. Sachar (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["327.6205694"], + "wording": ["Africa", + "Egypt; Sudan; South Sudan", + "International Relations", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DT82.I7 S197" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "2721047", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "1.4 inches", + "length": "6.4 inches", + "dimensions": "9.3 x 6.4 x 1.4 inches", + "weight": "3 pounds", + "pages": "384 " +}, +"270018028": { + "books_id": "270018028", + "title": "Egypt and Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sachar, Howard M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard M.", + "fl": "Howard M. Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399901248", + "isbn": { + "0": "0399901248", + "2": "9780399901249" + }, + "asin": "0399901248", + "ean": ["0399901248"], + "publication": "Richard Marek Pubs (1981), Edition: First Edition", + "date": "1981", + "summary": "Egypt and Israel by Howard M. Sachar (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["327.6205694"], + "wording": ["Africa", + "Egypt; Sudan; South Sudan", + "International Relations", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DT82.I7 S197" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "2721047", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "9.3 inches", + "thickness": "1.4 inches", + "length": "6.4 inches", + "dimensions": "9.3 x 6.4 x 1.4 inches", + "weight": "3 pounds", + "pages": "384 " +}, +"270018138": { + "books_id": "270018138", + "title": "A History of Modern Jewry", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Mahler, Raphael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mahler, Raphael", + "fl": "Raphael Mahler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805233989", + "isbn": { + "0": "0805233989", + "2": "9780805233988" + }, + "asin": "0805233989", + "ean": ["0805233989"], + "publication": "Schocken Books (1971)", + "date": "1971", + "summary": "A History of Modern Jewry by Raphael Mahler (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["909.04"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "World history"] + }, + "lcc": { + "code": "DS125.M322132" + }, + "source": "amazon.com books", + "workcode": "6595365", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270018219": { + "books_id": "270018219", + "title": "A History of Israel: From the Rise of Zionism to Our Time", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Sachar, Howard M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard M.", + "fl": "Howard M. Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375711325", + "isbn": { + "0": "0375711325", + "2": "9780375711329" + }, + "asin": "0375711325", + "ean": ["0375711325"], + "publication": "Alfred A. Knopf (2007), Edition: 3rd Revised and Updated, 1270 pages", + "date": "2007", + "summary": "A History of Israel: From the Rise of Zionism to Our Time by Howard M. Sachar (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126 .S155" + }, + "subject": { + "0": ["Israel", + "History"], + "2": ["Israel", + "history"], + "3": ["Palestine", + "History", + "1917-1948"], + "5": ["Zionism", + "History"], + "7": ["Zionism", + "history"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "65078", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1270 p.; 9.2 inches", + "height": "9.2 inches", + "thickness": "2 inches", + "length": "6.1 inches", + "dimensions": "9.2 x 6.1 x 2 inches", + "weight": "2.8990787453 pounds", + "pages": "1270 " +}, +"270018311": { + "books_id": "270018311", + "title": "A History of Israel (Third Edition) (Westminster Aids to the Study of the Scriptures) by John Bright (1981-02-18)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Bright, John", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bright, John", + "fl": "John Bright", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01K0PQBMK", + "publication": "westminster press in philadelphia (1981), Edition: 2nd", + "date": "1981", + "summary": "A History of Israel (Third Edition) (Westminster Aids to the Study of the Scriptures) by John Bright (1981-02-18) by John Bright (1981)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS121 .B72" + }, + "subject": [["Jews", + "History"], + ["Jews", + "History", + "To 70 A.D"], + ["Jews", + "history"], + ["Palestine", + "History", + "To 70 A.D"]], + "series": ["Westminster Aids to the Study of the Scriptures"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "46769", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.45 pounds" +}, +"270018404": { + "books_id": "270018404", + "title": "Responsa and Halakhic Studies", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Klein, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klein, Isaac", + "fl": "Isaac Klein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870682881", + "isbn": { + "0": "0870682881", + "2": "9780870682889" + }, + "asin": "0870682881", + "ean": ["0870682881"], + "publication": "Ktav Pub & Distributors Inc (1975), Edition: First Edition", + "date": "1975", + "summary": "Responsa and Halakhic Studies by Isaac Klein (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM522.L37" + }, + "source": "amazon.com books", + "workcode": "9256613", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.1 pounds" +}, +"270018443": { + "books_id": "270018443", + "title": "Great Jewish Ideas; God, Torah, Israel; The Concepts That Distinguish Judaism; B'Nai B'Rith Great Books Series, Vol V", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Millgram, Abraham Ezra", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Millgram, Abraham Ezra", + "fl": "Abraham Ezra Millgram", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002AORWG4", + "publication": "B'Nai B'Rith, Edition: First Edition", + "summary": "Great Jewish Ideas; God, Torah, Israel; The Concepts That Distinguish Judaism; B'Nai B'Rith Great Books Series, Vol V by Abraham Ezra Millgram", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.082"], + "wording": ["Culture Studies", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM42.M5" + }, + "subject": { + "0": ["Judaism"], + "2": ["judaism"] + }, + "series": ["B'nai B'rith great books"], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "2404021", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.55 pounds" +}, +"270018504": { + "books_id": "270018504", + "title": "Contemporary Jewish Thought: A Reader (B'nai B'rith Great Books Series, Volume IV)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Noveck, Simon", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Noveck, Simon", + "fl": "Simon Noveck", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000VT4DL2", + "publication": "B'nai B'rith Department of Adult Jewish Education (1963), Edition: Later Printing, 378 pages", + "date": "1963", + "summary": "Contemporary Jewish Thought: A Reader (B'nai B'rith Great Books Series, Volume IV) by Simon Noveck (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0904"], + "wording": ["Biography And History", + "By Period", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM42.N58" + }, + "subject": { + "0": ["Judaism"], + "2": ["Judaism", + "20th century"], + "3": ["Judaism", + "Doctrines"], + "4": ["Zionism", + "Philosophy"], + "5": ["judaism"] + }, + "series": ["B'nai B'rith great books"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1564629", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "378 p.", + "weight": "1.6 pounds", + "pages": "378 " +}, +"270018540": { + "books_id": "270018540", + "title": "Eichmann in Jerusalem: A Report on the Banality of Evil", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Arendt, Hannah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Arendt, Hannah", + "fl": "Hannah Arendt", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00KRRARY0", + "publication": "Viking Press (1963), Edition: First Edition", + "date": "1963", + "summary": "Eichmann in Jerusalem: A Report on the Banality of Evil by Hannah Arendt (1963)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["940.5318092"], + "wording": ["1918-", + "Biography", + "History & geography", + "History of Europe", + "History of Europe", + "History, geographic treatment, biography", + "Holocaust", + "Social, political, economic history; Holocaust", + "Standard subdivisions", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DD247.E5" + }, + "subject": { + "0": ["Eichmann, Adolf, 1906-1962"], + "1": ["Holocaust, Jewish (1939-1945)"], + "3": ["Jews", + "Europe", + "Persecutions"], + "4": ["Jews", + "Europe.", + "Persecutions"], + "5": ["Jews", + "Persecutions", + "Europe"], + "6": ["Juifs", + "Europe", + "Pers?ecutions"], + "7": ["War crime trials", + "Israel", + "Jerusalem", + "Eichmann case, 1961-1962"], + "8": ["War crime trials", + "Jerusalem"] + }, + "originaltitle": "Eichmann in Jerusalem: A Report on the Banality of Evil", + "awards": ["200 best non-fiction books according to Afisha Magazine", + "Audie Award", + "BookDepository's 100 Best Books Ever", + "CounterPunch's Top 100 [and a few more] Non-fiction Works of the 20th Century", + "Harenberg Buch der 1000 B\u00fccher", + "Notable Books List", + "The Guardian 100 Greatest Non-Fiction", + "The Hundred Most Influential Books Since the War"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "3805"], + "source": "amazon.com books", + "workcode": "3485", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"270018629": { + "books_id": "270018629", + "title": "A History of Israel", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Sachar, Howard M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard M.", + "fl": "Howard M. Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0195046234", + "isbn": { + "0": "0195046234", + "2": "9780195046236" + }, + "asin": "0195046234", + "ean": ["0195046234"], + "publication": "Oxford University Press (1988), Edition: Reprint, 336 pages", + "date": "1988", + "summary": "A History of Israel by Howard M. Sachar (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126 .S152" + }, + "subject": [["Israel", + "History"], + ["Palestine", + "History", + "1917-1948"], + ["Zionism", + "History"]], + "source": "amazon.com books", + "workcode": "927719", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "1.1 pounds", + "pages": "336 " +}, +"270018644": { + "books_id": "270018644", + "title": "The House of Nasi: Dona Gracia", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FR5LK", + "publication": "Jewish Publication Society (1948), Edition: First Edition", + "date": "1948", + "summary": "The House of Nasi: Dona Gracia by Cecil Roth (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "History & geography"] + }, + "lcc": { + "code": "DS124" + }, + "subject": [["Jews", + "History"], + ["Jews", + "history"]], + "source": "amazon.com books", + "workcode": "344109", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270018662": { + "books_id": "270018662", + "title": "The Saving Remnant", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Agar, Herbert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Agar, Herbert", + "fl": "Herbert Agar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0670619817", + "isbn": { + "0": "0670619817", + "2": "9780670619818" + }, + "asin": "0670619817", + "ean": ["0670619817"], + "publication": "Viking Adult (1960), Edition: First Edition", + "date": "1960", + "summary": "The Saving Remnant by Herbert Agar (1960)", + "language": ["English", + "French"], + "language_codeA": ["eng", + "fre"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "HV3190.A3" + }, + "source": "amazon.com books", + "workcode": "3360918", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "8.7 inches", + "height": "8.7 inches", + "thickness": "1.2 inches", + "length": "6 inches", + "dimensions": "8.7 x 6 x 1.2 inches" +}, +"270018714": { + "books_id": "270018714", + "title": "Abraham Joshua Heschel: Prophetic Witness", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kaplan, Edward K.", + "primaryauthorrole": "Author", + "secondaryauthor": "Dresner, Samuel H.", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Kaplan, Edward K.", + "fl": "Edward K. Kaplan", + "role": "Author" + }, + { + "lf": "Dresner, Samuel H.", + "fl": "Samuel H. Dresner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0300124643", + "isbn": { + "0": "0300124643", + "2": "9780300124644" + }, + "asin": "0300124643", + "ean": ["0884971692699"], + "upc": ["884971692699"], + "publication": "Yale University Press (2007), Edition: Illustrated, 402 pages", + "date": "2007", + "summary": "Abraham Joshua Heschel: Prophetic Witness by Edward K. Kaplan (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.H34 K37" + }, + "subject": [["Heschel, Abraham Joshua, 1907-1972", + "Homes and haunts", + "Germany"], + ["Heschel, Abraham Joshua, 1907-1972", + "Homes and haunts", + "Poland"]], + "source": "amazon.com books", + "workcode": "1124952", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "402 p.; 9.21 x 1.04 inches", + "height": "1.04 inches", + "thickness": "6.35 inches", + "length": "9.21 inches", + "dimensions": "1.04 x 9.21 x 6.35 inches", + "weight": "1.3007273458 pounds", + "pages": "402 " +}, +"270018722": { + "books_id": "270018722", + "title": "Ahad Ha-am (Asher Ginzberg): A biography by Leon Simon", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Simon, Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Simon, Leon", + "fl": "Leon Simon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000O6HDM8", + "publication": "Jewish Publication Society of America (1960), Edition: First Edition, 348 pages", + "date": "1960", + "summary": "Ahad Ha-am (Asher Ginzberg): A biography by Leon Simon by Leon Simon (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["923.25693"], + "wording": ["Asia", + "Biography & genealogy", + "Government", + "History & geography", + "People in social sciences"] + }, + "lcc": { + "code": "DS151.G5 S54" + }, + "source": "amazon.com books", + "workcode": "5004152", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"270018756": { + "books_id": "270018756", + "title": "Understanding the Jewish Calendar", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bushwick, Nathan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bushwick, Nathan", + "fl": "Nathan Bushwick", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0940118173", + "isbn": { + "0": "0940118173", + "2": "9780940118171" + }, + "asin": "0940118173", + "ean": ["0940118173"], + "publication": "Moznaim Pub Corp (1989), 114 pages", + "date": "1989", + "summary": "Understanding the Jewish Calendar by Nathan Bushwick (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["529.326"], + "wording": ["Astronomy", + "Calendars", + "Chronology", + "Jewish calendar", + "Science"] + }, + "lcc": { + "code": "CE35 .B93" + }, + "subject": [["Calendar, Jewish"]], + "source": "amazon.com books", + "workcode": "950240", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "114 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6.25 inches", + "dimensions": "9 x 6.25 x 0.5 inches", + "weight": "0.8 pounds", + "pages": "114 " +}, +"270018815": { + "books_id": "270018815", + "title": "Invitation to the Talmud: A Teaching Book by Jacob Neusner (1989-03-03)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "unknown author", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "unknown author", + "fl": "unknown author", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B01F7Y8FOG", + "publication": "Harper San Francisco", + "summary": "Invitation to the Talmud: A Teaching Book by Jacob Neusner (1989-03-03) by unknown author", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM503.5 .N48" + }, + "subject": [["Talmud", + "Introductions"]], + "source": "amazon.com books", + "workcode": "179101", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"270018825": { + "books_id": "270018825", + "title": "Neighbors: The Destruction of the Jewish Community in Jedwabne, Poland", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gross, Jan T.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gross, Jan T.", + "fl": "Jan T. Gross", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0691234302", + "isbn": { + "0": "0691234302", + "2": "9780691234304" + }, + "asin": "0691234302", + "ean": ["0691234302"], + "publication": "Princeton University Press (2022), Edition: New, 304 pages", + "date": "2022", + "summary": "Neighbors: The Destruction of the Jewish Community in Jedwabne, Poland by Jan T. Gross (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135.P62 J443913" + }, + "subject": { + "0": ["Holocaust, Jewish (1939-1945)", + "Jedwabne"], + "1": ["Holocaust, Jewish (1939-1945)", + "Poland", + "Jedwabne"], + "2": ["Jedwabne (Poland)", + "Ethnic relations"], + "4": ["Jews", + "Jedwabne", + "History"], + "5": ["Jews", + "Poland", + "Jedwabne", + "History"], + "6": ["World War, 1939-1945", + "Collaborationists", + "Poland", + "Jedwabne"], + "7": ["World War, 1939-1945", + "Jedwabne.", + "Collaborationists"] + }, + "originaltitle": "S\u0105siedzi: Historia zag\u0142ady \u017cydowskiego miasteczka", + "awards": ["National Book Award", + "National Book Critics Circle Award", + "Nike Literary Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "276799", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8 inches", + "height": "8 inches", + "thickness": "0.75 inches", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 0.75 inches", + "weight": "2.314853751 pounds", + "pages": "304 " +}, +"270018884": { + "books_id": "270018884", + "title": "Personalities and events in Jewish history", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Roth, Cecil", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Roth, Cecil", + "fl": "Cecil Roth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EUPEU", + "publication": "Jewish Publication Society of America (1953), 324 pages", + "date": "1953", + "summary": "Personalities and events in Jewish history by Cecil Roth (1953)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS119.R78" + }, + "subject": [["Jews", + "History", + "Anecdotes"]], + "source": "amazon.com books", + "workcode": "1525165", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "324 p.", + "weight": "1.25 pounds", + "pages": "324 " +}, +"270018941": { + "books_id": "270018941", + "title": "A Guide to Jewish Religious Practice", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Klein, Isaac", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Klein, Isaac", + "fl": "Isaac Klein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0873340043", + "isbn": { + "0": "0873340043", + "2": "9780873340045" + }, + "asin": "0873340043", + "ean": ["0873340043"], + "publication": "Jewish Theological Seminary of amer (1979), Edition: First Edition, 588 pages", + "date": "1979", + "summary": "A Guide to Jewish Religious Practice by Isaac Klein (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM700.K54" + }, + "subject": { + "0": ["Conservative Judaism"], + "2": ["Jewish law"], + "4": ["Jews", + "Dietary laws"], + "6": ["Judaism", + "Customs and practices"], + "8": ["Judaism", + "Liturgy"] + }, + "source": "amazon.com books", + "workcode": "229340", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "588 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "2.25 inches", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 2.25 inches", + "weight": "2.15 pounds", + "pages": "588 " +}, +"270018981": { + "books_id": "270018981", + "title": "The Emergence of the Middle East: 1914-1924", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Sachar Howard M.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar Howard M.", + "fl": "Sachar Howard M.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CPB1A", + "publication": "Alfred a Knopf Inc (1969), Edition: First Edition, 547 pages", + "date": "1969", + "summary": "The Emergence of the Middle East: 1914-1924 by Sachar Howard M. (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32756201", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "547 p.", + "weight": "0.15 pounds", + "pages": "547 " +}, +"270018989": { + "books_id": "270018989", + "title": "Midrash: An Introduction", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1568213573", + "isbn": { + "0": "1568213573", + "2": "9781568213576" + }, + "asin": "1568213573", + "ean": ["1568213573"], + "publication": "Jason Aronson, Inc. (1994), Edition: First Paperback Edition, 229 pages", + "date": "1994", + "summary": "Midrash: An Introduction by Jacob Neusner (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM514 .N482" + }, + "subject": [["Halakhic Midrashim", + "History and criticism"]], + "source": "amazon.com books", + "workcode": "555781", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "229 p.; 8.38 inches", + "height": "8.38 inches", + "thickness": "0.68 inches", + "length": "5.9 inches", + "dimensions": "8.38 x 5.9 x 0.68 inches", + "weight": "0.7495716908 pounds", + "pages": "229 " +}, +"270019042": { + "books_id": "270019042", + "title": "Pesikta Derab Kahana", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Braude, William G.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Braude, William G.", + "fl": "William G. Braude", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600518", + "isbn": { + "0": "0827600518", + "2": "9780827600515" + }, + "asin": "0827600518", + "ean": ["0827600518"], + "publication": "Jewish Pubn Society (1975), Edition: First Edition", + "date": "1975", + "summary": "Pesikta Derab Kahana by William G. Braude (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM517.P34 E53" + }, + "subject": [["Bible. O.T.", + "Sermons"], + ["Jewish sermons"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "866534", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "2.25 pounds" +}, +"270019073": { + "books_id": "270019073", + "title": "Letters to My Palestinian Neighbor", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Halevi, Yossi Klein", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Halevi, Yossi Klein", + "fl": "Yossi Klein Halevi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "006284492X", + "isbn": { + "0": "006284492X", + "2": "9780062844927" + }, + "asin": "006284492X", + "ean": ["006284492X"], + "publication": "Harper Perennial (2019), Edition: Reprint, 288 pages", + "date": "2019", + "summary": "Letters to My Palestinian Neighbor by Yossi Klein Halevi (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94054"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS119 .K543" + }, + "awards": ["National Jewish Book Award", + "Wingate Literary Prize"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "20935960", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 8 inches", + "height": "8 inches", + "thickness": "0.65 inches", + "length": "5.31 inches", + "dimensions": "8 x 5.31 x 0.65 inches", + "weight": "2.314853751 pounds", + "pages": "288 " +}, +"270019089": { + "books_id": "270019089", + "title": "Henrietta Szold : Life and Letters", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Lowenthal Marvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Lowenthal Marvin", + "fl": "Lowenthal Marvin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1199186635", + "isbn": { + "0": "1199186635", + "2": "9781199186638" + }, + "asin": "B0007DLZNQ", + "ean": ["1199186635"], + "publication": "Viking Press (1942), Edition: First Edition", + "date": "1942", + "summary": "Henrietta Szold : Life and Letters by Lowenthal Marvin (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.S9 L6" + }, + "source": "amazon.com books", + "workcode": "179086", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.48125 pounds" +}, +"270019092": { + "books_id": "270019092", + "title": "The Yerushalmi--The Talmud of the Land of Israel: An Introduction (Library of Classical Judaism)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876688121", + "isbn": { + "0": "0876688121", + "2": "9780876688120" + }, + "asin": "0876688121", + "ean": ["0876688121"], + "publication": "Jason Aronson, Inc. (1994), 208 pages", + "date": "1994", + "summary": "The Yerushalmi--The Talmud of the Land of Israel: An Introduction (Library of Classical Judaism) by Jacob Neusner (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM498.8 .N49" + }, + "series": ["Library of Classical Judaism"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "2090141", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "208 p.; 9.28 inches", + "height": "9.28 inches", + "thickness": "0.84 inches", + "length": "6.4 inches", + "dimensions": "9.28 x 6.4 x 0.84 inches", + "weight": "1.0600046019222 pounds", + "pages": "208 " +}, +"270019179": { + "books_id": "270019179", + "title": "Judaism: The Evidence of the Mishnah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0226576175", + "isbn": { + "0": "0226576175", + "2": "9780226576176" + }, + "asin": "0226576175", + "ean": ["0226576175"], + "publication": "University of Chicago Press (1983), 432 pages", + "date": "1983", + "summary": "Judaism: The Evidence of the Mishnah by Jacob Neusner (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM497.N474" + }, + "source": "amazon.com books", + "workcode": "1685961", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "432 " +}, +"270019213": { + "books_id": "270019213", + "title": "When Your Child Asks: A Handbook for Jewish Parents", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glustrom, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glustrom, Simon", + "fl": "Simon Glustrom", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819705713", + "isbn": { + "0": "0819705713", + "2": "9780819705716" + }, + "asin": "0819705713", + "ean": ["0819705713"], + "publication": "Bloch Pub Co (1997), Edition: 1 ED, 166 pages", + "date": "1997", + "summary": "When Your Child Asks: A Handbook for Jewish Parents by Simon Glustrom (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.076"], + "wording": ["Education And Research", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM570.G55" + }, + "source": "amazon.com books", + "workcode": "7736070", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "166 p.; 8 inches", + "height": "8 inches", + "thickness": "0.5 inches", + "length": "5.5 inches", + "dimensions": "8 x 5.5 x 0.5 inches", + "weight": "0.54 pounds", + "pages": "166 " +}, +"270019294": { + "books_id": "270019294", + "title": "The Rise and Fall of the Judaean State, Vol. 1: 332-37 B.C.E.- A Political, Social and Religious History of the Second Commonwealth", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Zeitlin, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Zeitlin, Solomon", + "fl": "Solomon Zeitlin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000VGIX0C", + "publication": "Jewish Publication Society of America (1964), Edition: 2nd, 528 pages", + "date": "1964", + "summary": "The Rise and Fall of the Judaean State, Vol. 1: 332-37 B.C.E.- A Political, Social and Religious History of the Second Commonwealth by Solomon Zeitlin (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS122 Z43" + }, + "source": "amazon.com books", + "workcode": "10769244", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "528 p.", + "weight": "1.85 pounds", + "pages": "528 " +}, +"270019342": { + "books_id": "270019342", + "title": "Hellenistic civilization and the Jews. Translated by S. Applebaum", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Tcherikover, Victor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Tcherikover, Victor", + "fl": "Victor Tcherikover", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0018NDUOG", + "publication": "Philadelphia Jewish Publication Society of America (1959), Edition: 2nd Printing", + "date": "1959", + "summary": "Hellenistic civilization and the Jews. Translated by S. Applebaum by Victor Tcherikover (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["938.09"], + "wording": ["Greece to 323", + "Greece to 323", + "Greek Subjection (146 BC - 323 AD)", + "History & geography", + "History of ancient world (to ca. 499)"] + }, + "lcc": { + "code": "DS122.T313" + }, + "subject": { + "0": ["Greece", + "History"], + "1": ["Greece", + "History", + "146 B.C.-323 A.D"], + "3": ["Hellenism"], + "5": ["Jews", + "History"], + "6": ["Jews", + "History", + "586 B.C.-70 A.D"], + "7": ["Jews", + "history"], + "8": ["hellenism"] + }, + "source": "amazon.com books", + "workcode": "374676", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.55 pounds" +}, +"270019343": { + "books_id": "270019343", + "title": "Street People", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dudman, Helga", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dudman, Helga", + "fl": "Helga Dudman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9652200395", + "isbn": { + "0": "9652200395", + "2": "9789652200396" + }, + "asin": "9652200395", + "ean": ["9652200395"], + "publication": "Hippocrene Books (1982), Edition: 2nd Edition, 200 pages", + "date": "1982", + "summary": "Street People by Helga Dudman (1982)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS110.T375 A23" + }, + "source": "amazon.com books", + "workcode": "7735010", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "height": "8.82 inches", + "thickness": "0.79 inches", + "length": "6.3 inches", + "dimensions": "8.82 x 6.3 x 0.79 inches", + "weight": "0.88 pounds", + "pages": "200 " +}, +"270019375": { + "books_id": "270019375", + "title": "Mirror of the Arab World: Lebanon in Conflict", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mackey, Sandra", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mackey, Sandra", + "fl": "Sandra Mackey", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "039306218X", + "isbn": { + "0": "039306218X", + "2": "9780393062182" + }, + "asin": "039306218X", + "ean": ["039306218X"], + "publication": "W. W. Norton & Company (2008), Edition: 1, 320 pages", + "date": "2008", + "summary": "Mirror of the Arab World: Lebanon in Conflict by Sandra Mackey (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9204"], + "wording": ["1926–", + "History & geography", + "History of Asia", + "Lebanon", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS87 .M282" + }, + "source": "amazon.com books", + "workcode": "4784561", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "320 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1.2 inches", + "length": "6.5 inches", + "dimensions": "9.5 x 6.5 x 1.2 inches", + "weight": "1.27206725174 pounds", + "pages": "320 " +}, +"270019397": { + "books_id": "270019397", + "title": "Israel and World Politics", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Draper, Theodore", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Draper, Theodore", + "fl": "Theodore Draper", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00F0S6C0O", + "publication": "The Viking Press", + "summary": "Israel and World Politics by Theodore Draper", + "ddc": { + "code": ["956"], + "wording": ["History & geography", + "History of Asia", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS127.D7" + }, + "subject": [["Israel-Arab War, 1967", + "Causes"], + ["Israel-Arab War, 1967", + "Sources"]], + "source": "amazon.com books", + "workcode": "512978", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.01 pounds" +}, +"270019403": { + "books_id": "270019403", + "title": "O Jerusalem!", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Collins, Larry", + "primaryauthorrole": "Author", + "secondaryauthor": "Lapierre, Dominique", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Collins, Larry", + "fl": "Larry Collins", + "role": "Author" + }, + { + "lf": "Lapierre, Dominique", + "fl": "Dominique Lapierre", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671662414", + "isbn": { + "0": "0671662414", + "2": "9780671662417" + }, + "asin": "0671662414", + "ean": ["0671662414"], + "publication": "Simon & Schuster (1988), Edition: First Edition, 640 pages", + "date": "1988", + "summary": "O Jerusalem! by Larry Collins (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.J4 C63" + }, + "subject": { + "0": ["Israel-Arab War, 1948-1949", + "Jerusalem"], + "2": ["Jerusalem", + "History", + "Siege, 1948"] + }, + "originaltitle": "\u00d4 J\u00e9rusalem!", + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "History"], + "genre_id": ["20275895", + "1599"], + "source": "amazon.com books", + "workcode": "486408", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "640 p.; 8.44 inches", + "height": "8.4375 inches", + "thickness": "1.5 inches", + "length": "5.5 inches", + "dimensions": "8.4375 x 5.5 x 1.5 inches", + "weight": "1.4991433816 pounds", + "pages": "640 " +}, +"270019453": { + "books_id": "270019453", + "title": "Wounds Not Healed by Time: The Power of Repentance and Forgiveness", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schimmel, Solomon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Schimmel, Solomon", + "fl": "Solomon Schimmel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "019517612X", + "isbn": { + "0": "019517612X", + "2": "9780195176124" + }, + "asin": "019517612X", + "ean": ["019517612X"], + "publication": "Oxford University Press (2004), Edition: 1, 288 pages", + "date": "2004", + "summary": "Wounds Not Healed by Time: The Power of Repentance and Forgiveness by Solomon Schimmel (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["179.9"], + "wording": ["Ethics", + "Humility - Liberality - Gentleness - Patience - Diligence - Charity - Modesty and other virtues", + "Other ethical norms", + "Philosophy & psychology"] + }, + "lcc": { + "code": "BJ1476 .S34" + }, + "awards": ["PROSE Award"], + "genre": ["Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "1246281", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.; 9.24 inches", + "height": "9.24 inches", + "thickness": "0.81 inches", + "length": "6.14 inches", + "dimensions": "9.24 x 6.14 x 0.81 inches", + "weight": "0.89948602896 pounds", + "pages": "288 " +}, +"270019567": { + "books_id": "270019567", + "title": "Resurrecting Hebrew (Jewish Encounters Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stavans, Ilan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stavans, Ilan", + "fl": "Ilan Stavans", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805242317", + "isbn": { + "0": "0805242317", + "2": "9780805242317" + }, + "asin": "0805242317", + "ean": ["0805242317"], + "publication": "Schocken (2008), Edition: American First, 240 pages", + "date": "2008", + "summary": "Resurrecting Hebrew (Jewish Encounters Series) by Ilan Stavans (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.409"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "History, geographic treatment, biography of Hebrew", + "Language", + "Other languages", + "modified standard subdivisions of Hebrew"] + }, + "lcc": { + "code": "PJ4551 .S73" + }, + "source": "amazon.com books", + "workcode": "5958532", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 8 inches", + "height": "8 inches", + "thickness": "1 inch", + "length": "5.25 inches", + "dimensions": "8 x 5.25 x 1 inches", + "weight": "0.75 pounds", + "pages": "240 " +}, +"270019587": { + "books_id": "270019587", + "title": "Jewish Reflections on Death", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Riemer, Jack", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Riemer, Jack", + "fl": "Jack Riemer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805205160", + "isbn": { + "0": "0805205160", + "2": "9780805205169" + }, + "asin": "0805205160", + "ean": ["0805205160"], + "publication": "Schocken (1987), 182 pages", + "date": "1987", + "summary": "Jewish Reflections on Death by Jack Riemer (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM635 .R53" + }, + "subject": [["Death", + "Religious aspects", + "Judaism"]], + "source": "amazon.com books", + "workcode": "1043635", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "182 p.; 8 inches", + "height": "8 inches", + "thickness": "0.5 inches", + "length": "5.5 inches", + "dimensions": "8 x 5.5 x 0.5 inches", + "weight": "0.45 pounds", + "pages": "182 " +}, +"270019636": { + "books_id": "270019636", + "title": "Tradition and Crisis: Jewish Society at the End of the Middle Ages (Medieval Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Katz, Jacob", + "primaryauthorrole": "Author", + "secondaryauthor": "Cooperman, Tradition and Crisis Bernard Dov", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Katz, Jacob", + "fl": "Jacob Katz", + "role": "Author" + }, + { + "lf": "Cooperman, Tradition and Crisis Bernard Dov", + "fl": "Tradition and Crisis Bernard Dov Cooperman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0815628277", + "isbn": { + "0": "0815628277", + "2": "9780815628279" + }, + "asin": "0815628277", + "ean": ["0815628277"], + "publication": "Syracuse University Press (2000), Edition: Revised ed., 410 pages", + "date": "2000", + "summary": "Tradition and Crisis: Jewish Society at the End of the Middle Ages (Medieval Studies) by Jacob Katz (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS112 .K373" + }, + "subject": { + "0": ["Jews", + "History"], + "1": ["Jews", + "History", + "70-1789"], + "2": ["Jews", + "Social life and customs"], + "4": ["Jews", + "history"] + }, + "source": "amazon.com books", + "workcode": "1198370", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "410 p.; 9 inches", + "height": "9 inches", + "thickness": "1.04 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.04 inches", + "weight": "1.3007273458 pounds", + "pages": "410 " +}, +"270019772": { + "books_id": "270019772", + "title": "Explaining Death to Children", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Grollman, Earl A.", + "primaryauthorrole": "Editor", + "secondaryauthor": "Louise B Ames", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Grollman, Earl A.", + "fl": "Earl A. Grollman", + "role": "Editor" + }, + { + "lf": "Louise B Ames", + "fl": "Louise B Ames", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "080702385X", + "isbn": { + "0": "080702385X", + "2": "9780807023853" + }, + "asin": "080702385X", + "ean": ["080702385X"], + "publication": "Beacon Pr (1971), Edition: non stated, 296 pages", + "date": "1971", + "summary": "Explaining Death to Children by Earl A. Grollman (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["155.4"], + "wording": ["Childhood", + "Differential and developmental psychology", + "Philosophy & psychology", + "Psychology"] + }, + "lcc": { + "code": "BF723.D3 G7" + }, + "subject": { + "0": ["Bereavement in adolescence"], + "2": ["Bereavement in children"], + "4": ["Children and death"], + "6": ["Divorce"], + "7": ["Grief in adolescence"], + "9": ["Grief in children"], + "11": ["Teenagers and death"] + }, + "source": "amazon.com books", + "workcode": "1710888", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "296 p.; 7.9 inches", + "height": "7.9 inches", + "thickness": "5.4 inches", + "length": "0.9 inches", + "dimensions": "7.9 x 0.9 x 5.4 inches", + "weight": "0.000625 pounds", + "pages": "296 " +}, +"270019802": { + "books_id": "270019802", + "title": "Hellenistic Culture: Fusion and Diffusion", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hadas, Moses", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hadas, Moses", + "fl": "Moses Hadas", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393005933", + "isbn": { + "0": "0393005933", + "2": "9780393005936" + }, + "asin": "0393005933", + "ean": ["0393005933"], + "publication": "W. W. Norton & Company (1989), Edition: First Edition, 330 pages", + "date": "1989", + "summary": "Hellenistic Culture: Fusion and Diffusion by Moses Hadas (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["913.38"], + "wording": ["Antiquities of ancient countries", + "Geography & travel", + "Geography of and travel in ancient world", + "Greece including Macedonia to 323", + "History & geography"] + }, + "lcc": { + "code": "DF77.H3" + }, + "subject": { + "0": ["Greece", + "Civilization"], + "2": ["Greece", + "Civilization", + "To 146 B.C"], + "3": ["Greece", + "Civilization", + "to 146 B.C"], + "4": ["Hellenism"] + }, + "source": "amazon.com books", + "workcode": "574381", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "330 p.; 7.99 inches", + "height": "7.99211 inches", + "thickness": "0.98425 inches", + "length": "4.99999 inches", + "dimensions": "7.99211 x 4.99999 x 0.98425 inches", + "weight": "0.62611282408 pounds", + "pages": "330 " +}, +"270019838": { + "books_id": "270019838", + "title": "African Zion;: The attempt to establish a Jewish colony in the East Africa Protectorate, 1903-1905", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Weisbord, Robert G", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Weisbord, Robert G", + "fl": "Robert G Weisbord", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827601247", + "isbn": { + "0": "0827601247", + "2": "9780827601246" + }, + "asin": "B0006BULKC", + "ean": ["0827601247"], + "publication": "Jewish Publication Society of America (1968), Edition: First Edition, 347 pages", + "date": "1968", + "summary": "African Zion;: The attempt to establish a Jewish colony in the East Africa Protectorate, 1903-1905 by Robert G Weisbord (1968)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.3"], + "wording": ["English", + "International migration and colonization", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DS135.A25 W43" + }, + "subject": [["Jews", + "Africa, British East.", + "Colonization"]], + "source": "amazon.com books", + "workcode": "5161540", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "347 p.", + "weight": "1.01 pounds", + "pages": "347 " +}, +"270019890": { + "books_id": "270019890", + "title": "Moses Maimonides: The Man and His Works", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Davidson, Herbert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Davidson, Herbert", + "fl": "Herbert Davidson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0199747571", + "isbn": { + "0": "0199747571", + "2": "9780199747573" + }, + "asin": "0199747571", + "ean": ["0199747571"], + "publication": "Oxford University Press (2010), Edition: Reprint, 584 pages", + "date": "2010", + "summary": "Moses Maimonides: The Man and His Works by Herbert Davidson (2010)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["291.1"], + "wording": ["Other religions", + "Religion", + "[formerly: Comparative Religion; Mythology. Relocated to 200]", + "[formerly: Religious mythology, general classes of religion, interreligious relations and attitudes, social theology. Relocated to 201]"] + }, + "lcc": { + "code": "BM755.M6 D38" + }, + "subject": [["Jewish scholars", + "Egypt", + "Biography"], + ["Maimonides, Moses, 1135-1204"], + ["Maimonides, Moses, 1135-1204", + "Teachings"], + ["Rabbis", + "Egypt", + "Biography"]], + "source": "amazon.com books", + "workcode": "3618041", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "584 p.; 9 x 1.29 inches", + "height": "1.29 inches", + "thickness": "6 inches", + "length": "9 inches", + "dimensions": "1.29 x 9 x 6 inches", + "weight": "1.90038469844 pounds", + "pages": "584 " +}, +"270019895": { + "books_id": "270019895", + "title": "Josel of Rosheim, commander of Jewry in the Holy Roman Empire of the German nation", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Stern, Selma", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Stern, Selma", + "fl": "Selma Stern", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BMX7Q", + "publication": "Jewish Publication Society of America (1965), Edition: First Edition, 327 pages", + "date": "1965", + "summary": "Josel of Rosheim, commander of Jewry in the Holy Roman Empire of the German nation by Selma Stern (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["943.031009174924"], + "wording": ["Charles V 1519-1556", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Reformation to 1618 1517-1618"] + }, + "lcc": { + "code": "DS135.G5 J653" + }, + "source": "amazon.com books", + "workcode": "7669443", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "327 p.", + "weight": "1.2 pounds", + "pages": "327 " +}, +"270019938": { + "books_id": "270019938", + "title": "Language in Time of Revolution", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Harshav, Benjamin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Harshav, Benjamin", + "fl": "Benjamin Harshav", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0520079582", + "isbn": { + "0": "0520079582", + "2": "9780520079588" + }, + "asin": "0520079582", + "ean": ["0520079582"], + "publication": "University of California Press (1993), Edition: First Edition, 248 pages", + "date": "1993", + "summary": "Language in Time of Revolution by Benjamin Harshav (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["492.4"], + "wording": ["Afro-Asiatic languages", + "Hebrew", + "Language", + "Other languages"] + }, + "lcc": { + "code": "PJ4551.H37" + }, + "source": "amazon.com books", + "workcode": "1004731", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "248 p.; 9 inches", + "height": "9 inches", + "thickness": "0.8 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.8 inches", + "weight": "1.00089866948 pounds", + "pages": "248 " +}, +"270019976": { + "books_id": "270019976", + "title": "Carved Memories: Heritage in Stone from the Russian Jewish Pale", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goberman, David", + "primaryauthorrole": "Author", + "secondaryauthor": "Pinsky, Robert|Gershon Hundert", + "secondaryauthorroles": "Introduction|Photographer", + "authors": [{ + "lf": "Goberman, David", + "fl": "David Goberman", + "role": "Author" + }, + { + "lf": "Pinsky, Robert", + "fl": "Robert Pinsky", + "role": "Introduction" + }, + { + "lf": "Gershon Hundert", + "fl": "Gershon Hundert", + "role": "Photographer" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0847822567", + "isbn": { + "0": "0847822567", + "2": "9780847822560" + }, + "asin": "0847822567", + "ean": ["0847822567"], + "publication": "Rizzoli International Publications (2000), Edition: First Edition, 167 pages", + "date": "2000", + "summary": "Carved Memories: Heritage in Stone from the Russian Jewish Pale by David Goberman (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["736.5"], + "wording": ["Arts & recreation", + "Carving and carvings", + "Sculpture, ceramics & metalwork", + "Stone"] + }, + "lcc": { + "code": "NB1880.U38 G63" + }, + "source": "amazon.com books", + "workcode": "2254358", + "entrydate": "2024-08-18", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "167 p.; 11.5 inches", + "height": "11.5 inches", + "thickness": "0.75 inches", + "length": "8 inches", + "dimensions": "11.5 x 8 x 0.75 inches", + "weight": "2.20021337476 pounds", + "pages": "167 " +}, +"271643460": { + "books_id": "271643460", + "title": "Doesn't Anyone Blush Anymore?", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedman, Manis", + "primaryauthorrole": "Author", + "secondaryauthor": "Morris, J.S.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Friedman, Manis", + "fl": "Manis Friedman", + "role": "Author" + }, + { + "lf": "Morris, J.S.", + "fl": "J.S. Morris", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1477520317", + "isbn": { + "0": "1477520317", + "2": "9781477520314" + }, + "asin": "1477520317", + "ean": ["1477520317"], + "publication": "CreateSpace Independent Publishing Platform (2012), 144 pages", + "date": "2012", + "summary": "Doesn't Anyone Blush Anymore? by Manis Friedman (2012)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM720.S4 F75" + }, + "source": "amazon.com books", + "workcode": "502101", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "144 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.33 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.33 inches", + "weight": "0.38 pounds", + "pages": "144 " +}, +"271643499": { + "books_id": "271643499", + "title": "Code of Jewish Law", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ganzfried, Solomon", + "primaryauthorrole": "Author", + "secondaryauthor": "Goldin, Hyman E.", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Ganzfried, Solomon", + "fl": "Solomon Ganzfried", + "role": "Author" + }, + { + "lf": "Goldin, Hyman E.", + "fl": "Hyman E. Goldin", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0884827798", + "isbn": { + "0": "0884827798", + "2": "9780884827795" + }, + "asin": "0884827798", + "ean": ["0884827798"], + "publication": "Hebrew Publishing Company (1963), Edition: Revised, 626 pages", + "date": "1963", + "summary": "Code of Jewish Law by Solomon Ganzfried (1963)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM560 .G322" + }, + "subject": { + "0": ["Jewish law"], + "2": ["Judaism"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "Works to 1900"], + "8": ["Judaism", + "works to 1900"], + "9": ["judaism"] + }, + "source": "amazon.com books", + "workcode": "361707", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "626 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.5 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1.5 inches", + "weight": "1.44 pounds", + "pages": "626 " +}, +"271643552": { + "books_id": "271643552", + "title": "On the Bible: Eighteen Studies (Martin Buber Library)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Buber, Martin", + "primaryauthorrole": "Author", + "secondaryauthor": "Glatzer, On the Bible Nahum N.", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Buber, Martin", + "fl": "Martin Buber", + "role": "Author" + }, + { + "lf": "Glatzer, On the Bible Nahum N.", + "fl": "On the Bible Nahum N. Glatzer", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0815628404", + "isbn": { + "0": "0815628404", + "2": "9780815628408" + }, + "asin": "0815628404", + "ean": ["0815628404"], + "publication": "Syracuse University Press (2000), 278 pages", + "date": "2000", + "summary": "On the Bible: Eighteen Studies (Martin Buber Library) by Martin Buber (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.6"], + "wording": ["Bible. O.T.--exegesis", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1192 .B8" + }, + "subject": [["Bible. O.T.", + "Criticism, interpretation, etc"]], + "source": "amazon.com books", + "workcode": "723752", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "278 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.67 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.67 inches", + "weight": "0.7495716908 pounds", + "pages": "278 " +}, +"271643572": { + "books_id": "271643572", + "title": "To Be a Jew: A Guide to Jewish Observance in Contempory Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Donin, Rabbi Hayim Halevy", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Donin, Rabbi Hayim Halevy", + "fl": "Rabbi Hayim Halevy Donin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001PATSYI", + "publication": "Basic Books (1972)", + "date": "1972", + "summary": "To Be a Jew: A Guide to Jewish Observance in Contempory Life by Rabbi Hayim Halevy Donin (1972)", + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM700.D58" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Judaism", + "Customs and practices"] + }, + "source": "amazon.com books", + "workcode": "109772", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.85 pounds" +}, +"271643596": { + "books_id": "271643596", + "title": "Leon Gordon: An Appreciation (1910)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rhine, Abraham Benedict", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rhine, Abraham Benedict", + "fl": "Abraham Benedict Rhine", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B003E46TWM", + "publication": "Cornell University Library (2009), 198 pages", + "date": "2009", + "summary": "Leon Gordon: An Appreciation (1910) by Abraham Benedict Rhine (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PJ5052.G6 Z8" + }, + "source": "amazon.com books", + "workcode": "20121379", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "198 p.; 10.5 inches", + "height": "10.5 inches", + "thickness": "0.5 inches", + "length": "8.25 inches", + "dimensions": "10.5 x 8.25 x 0.5 inches", + "pages": "198 " +}, +"271643617": { + "books_id": "271643617", + "title": "Joseph, slave and prince (Heroes of God series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Long, Laura", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Long, Laura", + "fl": "Laura Long", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007E4ZU0", + "publication": "Association Press (1955), 126 pages", + "date": "1955", + "summary": "Joseph, slave and prince (Heroes of God series) by Laura Long (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["221.92"], + "wording": ["Geography, history, chronology, persons of Old Testament lands in Old Testament times", + "Old Testament (Tanakh)", + "Persons", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "PZ7.L855 J" + }, + "source": "amazon.com books", + "workcode": "10162267", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1", + "physical_description": "126 p.", + "weight": "0.45 pounds", + "pages": "126 " +}, +"271643618": { + "books_id": "271643618", + "title": "Jeremiah, Prophet Of Disaster: A Novel-Biography Of The Prophet Jeremiah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Millikin, Virginia Greene", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Millikin, Virginia Greene", + "fl": "Virginia Greene Millikin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1258089637", + "isbn": { + "0": "1258089637", + "2": "9781258089634" + }, + "asin": "1258089637", + "ean": ["1258089637"], + "publication": "Literary Licensing, LLC (2011), 154 pages", + "date": "2011", + "summary": "Jeremiah, Prophet Of Disaster: A Novel-Biography Of The Prophet Jeremiah by Virginia Greene Millikin (2011)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BS580.J4 M5" + }, + "source": "amazon.com books", + "workcode": "7221625", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "154 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.87964442538 pounds", + "pages": "154 " +}, +"271643644": { + "books_id": "271643644", + "title": "Magnificent Hadrian", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ish-Kishor, Sulamith", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ish-Kishor, Sulamith", + "fl": "Sulamith Ish-Kishor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00087235K", + "publication": "V. Gollancz (1935)", + "date": "1935", + "summary": "Magnificent Hadrian by Sulamith Ish-Kishor (1935)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "DG295.I8" + }, + "subject": [["Antino?us, ca. 110-130"], + ["Emperors", + "Rome", + "Biography"], + ["Hadrian, Emperor of Rome, 76-138"], + ["Rome", + "History", + "Hadrian, 117-138"]], + "source": "amazon.com books", + "workcode": "5916951", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271643700": { + "books_id": "271643700", + "title": "The Kabbalah: The Religious Philosophy of the Hebrews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Franck, Adolphe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Franck, Adolphe", + "fl": "Adolphe Franck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517226413", + "isbn": { + "0": "0517226413", + "2": "9780517226414" + }, + "asin": "0517226413", + "ean": ["0517226413"], + "publication": "Lyle Stuart (1977), Edition: 5th Printing, 224 pages", + "date": "1977", + "summary": "The Kabbalah: The Religious Philosophy of the Hebrews by Adolphe Franck (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.16"], + "wording": ["Jewish writings", + "Judaism", + "Kabbalah", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM525 .F73" + }, + "subject": [["Cabala", + "History"]], + "originaltitle": "La Kabbale, ou la Philosophie religieuse des H\u00e9breux", + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "132587", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.", + "weight": "1.05 pounds", + "pages": "224 " +}, +"271643736": { + "books_id": "271643736", + "title": "Pathways Through The Bible", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Mortimer J.", + "primaryauthorrole": "Author", + "secondaryauthor": "Szyk, Arthur", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Cohen, Mortimer J.", + "fl": "Mortimer J. Cohen", + "role": "Author" + }, + { + "lf": "Szyk, Arthur", + "fl": "Arthur Szyk", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00005WKXN", + "publication": "The Jewish Publication Society of America (1946), Edition: First Edition, 548 pages", + "date": "1946", + "summary": "Pathways Through The Bible by Mortimer J. Cohen (1946)", + "language": ["English", + "Chinese"], + "language_codeA": ["eng", + "chi"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng", + "chi"], + "ddc": { + "code": ["221.5"], + "wording": ["Modern versions and translations", + "Old Testament (Tanakh)", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1091.C57" + }, + "subject": [["Bible. O.T. English. Selections. 1960"]], + "source": "amazon.com books", + "workcode": "1171375", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "548 p.", + "weight": "1 pound", + "pages": "548 " +}, +"271643746": { + "books_id": "271643746", + "title": "Fear No Evil", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sharansky, Natan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sharansky, Natan", + "fl": "Natan Sharansky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1891620029", + "isbn": { + "0": "1891620029", + "2": "9781891620027" + }, + "asin": "1891620029", + "ean": ["1891620029"], + "publication": "PublicAffairs (1998), Edition: First Edition, 464 pages", + "date": "1998", + "summary": "Fear No Evil by Natan Sharansky (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["323.4"], + "wording": ["Civil and political rights", + "Political science", + "Social sciences", + "The state and the individual"] + }, + "lcc": { + "code": "DS135.R95 S497" + }, + "subject": { + "0": ["Civil rights", + "Soviet Union"], + "2": ["Jews", + "Soviet Union", + "Biography"], + "4": ["Political prisoners", + "Soviet Union", + "Biography"], + "6": ["Refuseniks", + "Biography"], + "8": ["Shcharansky, Anatoly"], + "9": ["Shcharansky, Anatoly", + "Imprisonment"] + }, + "awards": ["National Jewish Book Award", + "Notable Books List"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "72578", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 8.55 inches", + "height": "8.55 inches", + "thickness": "1.25 inches", + "length": "5.65 inches", + "dimensions": "8.55 x 5.65 x 1.25 inches", + "weight": "1.04940036712 pounds", + "pages": "464 " +},"271643777": { + "books_id": "271643777", + "title": "The Art of Blessing the Day: Poems with a Jewish Theme", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Piercy, Marge", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Piercy, Marge", + "fl": "Marge Piercy", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0375704310", + "isbn": { + "0": "0375704310", + "2": "9780375704314" + }, + "asin": "0375704310", + "ean": ["0375704310"], + "publication": "Knopf (2000), Edition: Reprint, 192 pages", + "date": "2000", + "summary": "The Art of Blessing the Day: Poems with a Jewish Theme by Marge Piercy (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["811.54"], + "wording": ["1945-1999", + "20th Century", + "American literature in English", + "American poetry in English", + "Literature"] + }, + "lcc": { + "code": "PS3566.I4 A89" + }, + "subject": { + "0": ["Jewish families", + "Poetry"], + "2": ["Jewish religious poetry, American"], + "4": ["Jews", + "Poetry"] + }, + "source": "amazon.com books", + "workcode": "37663", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 8.3 inches", + "height": "8.3 inches", + "thickness": "0.46 inches", + "length": "5.4 inches", + "dimensions": "8.3 x 5.4 x 0.46 inches", + "weight": "0.55 pounds", + "pages": "192 " +}, +"271643799": { + "books_id": "271643799", + "title": "Snow in August", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hamill, Pete", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hamill, Pete", + "fl": "Pete Hamill", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316242829", + "isbn": { + "0": "0316242829", + "2": "9780316242820" + }, + "asin": "0316242829", + "ean": ["0316242829"], + "publication": "Back Bay Books (2013), Edition: Reprint, 384 pages", + "date": "2013", + "summary": "Snow in August by Pete Hamill (2013)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3558.A423 S66" + }, + "subject": { + "0": ["Baseball", + "Fiction"], + "1": ["Baseball stories"], + "3": ["Brooklyn (New York, N.Y.)", + "Fiction"], + "5": ["Friendship", + "Fiction"], + "7": ["Historical Fiction"], + "9": ["Historical fiction"], + "11": ["Jewish fiction"], + "12": ["Jewish way of life", + "Fiction"], + "14": ["Large Type Books"], + "15": ["Large type books"], + "16": ["historical fiction"] + }, + "awards": ["ALA Popular Paperbacks for Young Adults", + "Alex Award", + "Long Island Reads", + "New York Times bestseller"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "4540", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.96 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.96 inches", + "weight": "2.314853751 pounds", + "pages": "384 " +}, +"271643919": { + "books_id": "271643919", + "title": "The Court Factor: The Story of Samson Wertheimer", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Apsler, Alfred", + "primaryauthorrole": "Author", + "secondaryauthor": "Albert Gold", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Apsler, Alfred", + "fl": "Alfred Apsler", + "role": "Author" + }, + { + "lf": "Albert Gold", + "fl": "Albert Gold", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GPS25O", + "publication": "Jewish Publication Society (1964), Edition: First Edition, 150 pages", + "date": "1964", + "summary": "The Court Factor: The Story of Samson Wertheimer by Alfred Apsler (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["922.968"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "HG186.A8 A7" + }, + "subject": [["Capitalists and financiers", + "Austria"]], + "series": ["Covenant books"], + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com books", + "workcode": "5072332", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271643930": { + "books_id": "271643930", + "title": "The voyage of the Ulua, (A Sabra book)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Eliav, Arie L", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eliav, Arie L", + "fl": "Arie L Eliav", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006BYUKY", + "publication": "Funk and Wagnalls (1969), Edition: First American Edition, 191 pages", + "date": "1969", + "summary": "The voyage of the Ulua, (A Sabra book) by Arie L Eliav (1969)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["325.5694"], + "wording": ["Asia", + "International migration and colonization", + "Israel/Palestine", + "Middle East", + "Political science", + "Social sciences", + "The Levant"] + }, + "lcc": { + "code": "DS126.E5513" + }, + "subject": { + "0": ["Palestine", + "Emigration and immigration"], + "2": ["Refugees, Jewish", + "Palestine"], + "4": ["Ulua (Ship)"] + }, + "source": "amazon.com books", + "workcode": "1997725", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "191 p.", + "weight": "0.95 pounds", + "pages": "191 " +}, +"271643932": { + "books_id": "271643932", + "title": "An Israel Haggadah for Passover", + "sortcharacter": "4", + "public": "true", + "primaryauthor": "Levin, Meyer", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Levin, Meyer", + "fl": "Meyer Levin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0810920409", + "isbn": { + "0": "0810920409", + "2": "9780810920408" + }, + "asin": "0810920409", + "ean": ["0810920409"], + "publication": "Harry N Abrams Inc (1977), Edition: Revised, 128 pages", + "date": "1977", + "summary": "An Israel Haggadah for Passover by Meyer Levin (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.P4 Z5556484" + }, + "source": "amazon.com books", + "workcode": "3462563", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "128 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.5 inches", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 0.5 inches", + "weight": "0.661386786 pounds", + "pages": "128 " +}, +"271643943": { + "books_id": "271643943", + "title": "The Zionist Idea: A Historical Analysis and Reader", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Hertzberg, Arthur", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Hertzberg, Arthur", + "fl": "Arthur Hertzberg", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827606222", + "isbn": { + "0": "0827606222", + "2": "9780827606227" + }, + "asin": "0827606222", + "ean": ["0827606222"], + "publication": "JEWISH PUBLICATON SOCIETY (1997), Edition: First Edition, 656 pages", + "date": "1997", + "summary": "The Zionist Idea: A Historical Analysis and Reader by Arthur Hertzberg (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["320.54"], + "wording": ["Nationalism, regionalism, internationalism", + "Political ideologies", + "Political science", + "Political science (Politics and government)", + "Social sciences"] + }, + "lcc": { + "code": "DS149 .Z675" + }, + "subject": [["Zionism", + "History", + "Sources"], + ["Zionism", + "Sources"]], + "source": "amazon.com books", + "workcode": "1102539", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "656 p.; 8.2 inches", + "height": "8.2 inches", + "thickness": "1.4 inches", + "length": "5.3 inches", + "dimensions": "8.2 x 5.3 x 1.4 inches", + "weight": "1.4991433816 pounds", + "pages": "656 " +}, +"271643966": { + "books_id": "271643966", + "title": "The stones of Zion;: A novelist's journal in Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Green, Gerald", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Green, Gerald", + "fl": "Gerald Green", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006C5G6K", + "publication": "Hawthorn Books (1971), Edition: First Edition, 386 pages", + "date": "1971", + "summary": "The stones of Zion;: A novelist's journal in Israel by Gerald Green (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS107 .G68" + }, + "subject": [["Israel", + "Description and travel"]], + "source": "amazon.com books", + "workcode": "4779805", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "386 p.", + "weight": "1.65 pounds", + "pages": "386 " +}, +"271644012": { + "books_id": "271644012", + "title": "Children's Letters to God", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hample, Stuart", + "primaryauthorrole": "Author", + "secondaryauthor": "Marshall, Eric", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Hample, Stuart", + "fl": "Stuart Hample", + "role": "Author" + }, + { + "lf": "Marshall, Eric", + "fl": "Eric Marshall", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0894809997", + "isbn": { + "0": "0894809997", + "2": "9780894809996" + }, + "asin": "0894809997", + "ean": ["0894809997"], + "upc": ["019628019998"], + "publication": "Workman Publishing Company (1991), Edition: Gift, 96 pages", + "date": "1991", + "summary": "Children's Letters to God by Stuart Hample (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["816.540809282"], + "wording": ["1945-1999", + "20th Century", + "American letters in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PN6231.C32 M3" + }, + "series": ["Children's Letters to God"], + "genre": ["Children's Books"], + "genre_id": ["11"], + "source": "amazon.com books", + "workcode": "312701", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "96 p.; 5.81 inches", + "height": "5.8098309 inches", + "thickness": "0.499999 inches", + "length": "5.5598314 inches", + "dimensions": "5.8098309 x 5.5598314 x 0.499999 inches", + "weight": "0.35053499658 pounds", + "pages": "96 " +}, +"271644023": { + "books_id": "271644023", + "title": "Prisoner without a Name, Cell without a Number (The Americas)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Timerman, Jacobo", + "primaryauthorrole": "Author", + "secondaryauthor": "Miller, Arthur|Stavans, Ilan|Talbot, Toby", + "secondaryauthorroles": "Foreword|Introduction|Translator", + "authors": [{ + "lf": "Timerman, Jacobo", + "fl": "Jacobo Timerman", + "role": "Author" + }, + { + "lf": "Miller, Arthur", + "fl": "Arthur Miller", + "role": "Foreword" + }, + { + "lf": "Stavans, Ilan", + "fl": "Ilan Stavans", + "role": "Introduction" + }, + { + "lf": "Talbot, Toby", + "fl": "Toby Talbot", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0274724073", + "isbn": { + "0": "0274724073", + "2": "9780274724079" + }, + "asin": "0299182444", + "ean": ["0299182444"], + "publication": "University of Wisconsin Press (2002), Edition: 1, 184 pages", + "date": "2002", + "summary": "Prisoner without a Name, Cell without a Number (The Americas) by Jacobo Timerman (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["365.45"], + "wording": ["Institutions for political prisoners and related groups of people", + "Institutions for specific classes of inmates", + "Penal institutions and other detention institutions", + "Social problems and social services", + "Social sciences"] + }, + "lcc": { + "code": "HV9582 .T5513" + }, + "subject": { + "0": ["Jews", + "Argentina", + "Biography"], + "2": ["Journalists", + "Argentina", + "Biography"], + "4": ["Political prisoners", + "Argentina", + "Biography"], + "6": ["Timerman, Jacobo, 1923-"] + }, + "awards": ["1000 Books to Read Before You Die", + "Crime Writers' Association Awards", + "Hillman Prize", + "Los Angeles Times Book Prize", + "New York Times bestseller", + "Notable Books List", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "222307", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "184 p.; 8.66 x 0.42 inches", + "height": "0.42 inches", + "thickness": "5.48 inches", + "length": "8.66 inches", + "dimensions": "0.42 x 8.66 x 5.48 inches", + "weight": "0.50044933474 pounds", + "pages": "184 " +}, +"271644046": { + "books_id": "271644046", + "title": "Children of the Kibbutz: A Study in Child Training and Personality", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Spiro, Melford E.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Spiro, Melford E.", + "fl": "Melford E. Spiro", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805200932", + "isbn": { + "0": "0805200932", + "2": "9780805200935" + }, + "asin": "0805200932", + "ean": ["0805200932"], + "publication": "Schocken Books (1972), Edition: Presumed to be 1st as edition is unstated, 500 pages", + "date": "1972", + "summary": "Children of the Kibbutz: A Study in Child Training and Personality by Melford E. Spiro (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["370.95694"], + "wording": ["Asia", + "Education", + "Education", + "History, geographic treatment, biography", + "Middle East", + "Social sciences"] + }, + "lcc": { + "code": "LB1029.C5 S65" + }, + "subject": { + "0": ["Child Development"], + "2": ["Child development"], + "4": ["Collective education", + "Israel"], + "6": ["Kibbutzim"] + }, + "source": "amazon.com books", + "workcode": "1989233", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "500 p.", + "height": "7.8 inches", + "thickness": "1.2 inches", + "length": "5.3 inches", + "dimensions": "7.8 x 5.3 x 1.2 inches", + "weight": "1.01 pounds", + "pages": "500 " +}, +"271644056": { + "books_id": "271644056", + "title": "Jewish Lives Jewish Learning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "House, Behrman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "House, Behrman", + "fl": "Behrman House", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0807407887", + "isbn": { + "0": "0807407887", + "2": "9780807407882" + }, + "asin": "0807407887", + "ean": ["0807407887"], + "publication": "Behrman House (1999), 1 pages", + "date": "1999", + "summary": "Jewish Lives Jewish Learning by Behrman House (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.68084"], + "wording": ["Jewish Education", + "Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "H74 S38" + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3353665", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "1 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.75 inches", + "length": "6 inches", + "dimensions": "8.75 x 6 x 0.75 inches", + "weight": "0.95019234922 pounds", + "pages": "1 " +}, +"271644063": { + "books_id": "271644063", + "title": "Dori: The Life and Times of Theodor Herzl in Budapest, 1860-1878 (Judaic Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Handler, Andrew", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Handler, Andrew", + "fl": "Andrew Handler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0817301259", + "isbn": { + "0": "0817301259", + "2": "9780817301255" + }, + "asin": "0817301259", + "ean": ["0817301259"], + "publication": "Univ of Alabama Pr (1983), Edition: First Thus, 176 pages", + "date": "1983", + "summary": "Dori: The Life and Times of Theodor Herzl in Budapest, 1860-1878 (Judaic Studies) by Andrew Handler (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.940010924"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.H4 H35" + }, + "source": "amazon.com books", + "workcode": "6631056", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644065": { + "books_id": "271644065", + "title": "Dori: The Life and Times of Theodor Herzl in Budapest, 1860-1878 (Judaic Studies)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Handler, Andrew", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Handler, Andrew", + "fl": "Andrew Handler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0817301259", + "isbn": { + "0": "0817301259", + "2": "9780817301255" + }, + "asin": "0817301259", + "ean": ["0817301259"], + "publication": "Univ of Alabama Pr (1983), Edition: First Thus, 176 pages", + "date": "1983", + "summary": "Dori: The Life and Times of Theodor Herzl in Budapest, 1860-1878 (Judaic Studies) by Andrew Handler (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.940010924"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.H4 H35" + }, + "source": "amazon.com books", + "workcode": "6631056", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644079": { + "books_id": "271644079", + "title": "The diary of David S. Kogan", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kogan, David S", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kogan, David S", + "fl": "David S Kogan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007H8K8A", + "publication": "Beechhurst Press (1955), Edition: First Edition, 255 pages", + "date": "1955", + "summary": "The diary of David S. Kogan by David S Kogan (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "21615582", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "255 p.", + "weight": "1 pound", + "pages": "255 " +}, +"271644115": { + "books_id": "271644115", + "title": "History of the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sachar, Abram Leon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Abram Leon", + "fl": "Abram Leon Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0075535599", + "isbn": { + "0": "0075535599", + "2": "9780075535591" + }, + "asin": "0075535599", + "ean": ["0075535599"], + "publication": "McGraw-Hill College (1967), Edition: Revised, Enlarged, 510 pages", + "date": "1967", + "summary": "History of the Jews by Abram Leon Sachar (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS117 .S3" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"] + }, + "awards": ["Anisfield-Wolf Book Award"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "42325", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "510 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.5 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.5 inches", + "weight": "1.15 pounds", + "pages": "510 " +}, +"271644201": { + "books_id": "271644201", + "title": "Cross-currents,", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Forster, Arnold", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Forster, Arnold", + "fl": "Arnold Forster", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007F82ZS", + "publication": "Doubleday (1956), Edition: First Edition, 382 pages", + "date": "1956", + "summary": "Cross-currents, by Arnold Forster (1956)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS145.F66" + }, + "subject": { + "0": ["Antisemitism"], + "2": ["Antisemitism", + "Germany"], + "3": ["Antisemitism", + "United States"], + "4": ["Arab-Israeli conflict", + "1948-1967"] + }, + "source": "amazon.com books", + "workcode": "3003169", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "382 p.", + "weight": "3 pounds", + "pages": "382 " +}, +"271644208": { + "books_id": "271644208", + "title": "From Tokyo to Jerusalem", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abraham Setsuzau Kotsuji", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abraham Setsuzau Kotsuji", + "fl": "Abraham Setsuzau Kotsuji", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DZ6HM", + "publication": "distributed by Random House (1964), 215 pages", + "date": "1964", + "summary": "From Tokyo to Jerusalem by Abraham Setsuzau Kotsuji (1964)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.P75 K6" + }, + "subject": [["Proselytes and proselyting, Jewish", + "Converts from Shinto"]], + "source": "amazon.com books", + "workcode": "2214979", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644209": { + "books_id": "271644209", + "title": "Theodore Herzl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pessin, Deborah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pessin, Deborah", + "fl": "Deborah Pessin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006ARUJI", + "publication": "Behrman House (1948), Edition: First Edition, 128 pages", + "date": "1948", + "summary": "Theodore Herzl by Deborah Pessin (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "DS151.H4 P48" + }, + "source": "amazon.com books", + "workcode": "4520636", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "128 p.", + "weight": "0.71 pounds", + "pages": "128 " +}, +"271644219": { + "books_id": "271644219", + "title": "VIENNA [HISTORY OF JEWS IN VIENNA]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Vienna) Grunwald, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vienna) Grunwald, Max", + "fl": "Max Vienna) Grunwald", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00C3GWHVE", + "publication": "Philadelphia: Jewish Publication Society (1936), Edition: First Edition", + "date": "1936", + "summary": "VIENNA [HISTORY OF JEWS IN VIENNA] by Max Vienna) Grunwald (1936)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876780", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644231": { + "books_id": "271644231", + "title": "Who Wrote the Bible?", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Friedman, Richard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Friedman, Richard", + "fl": "Richard Friedman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "150119240X", + "isbn": { + "0": "150119240X", + "2": "9781501192401" + }, + "asin": "150119240X", + "ean": ["150119240X"], + "publication": "Simon & Schuster (2019), 304 pages", + "date": "2019", + "summary": "Who Wrote the Bible? by Richard Friedman (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.1066"], + "wording": ["Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS1225 .F75" + }, + "subject": [["Bible. O.T. Historical Books", + "Criticism, interpretation, etc"], + ["Bible. O.T. Historical books", + "Authorship"], + ["Bible. O.T. Historical books", + "Criticism, interpretation, etc"], + ["Bible. O.T. Pentateuch", + "Authorship"], + ["Bible. O.T. Pentateuch", + "Criticism, interpretation, etc"], + ["Documentary hypothesis (Pentateuchal criticism)"]], + "originaltitle": "Who wrote the Bible?", + "awards": ["University of Cambridge Middle Eastern Preparatory Reading"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "106598", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 8.38 inches", + "height": "8.375 inches", + "thickness": "0.7 inches", + "length": "5.5 inches", + "dimensions": "8.375 x 5.5 x 0.7 inches", + "weight": "0.5401325419 pounds", + "pages": "304 " +}, +"271644241": { + "books_id": "271644241", + "title": "The Life of David (Jewish Encounters Series)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pinsky, Robert", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pinsky, Robert", + "fl": "Robert Pinsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805211535", + "isbn": { + "0": "0805211535", + "2": "9780805211535" + }, + "asin": "0805211535", + "ean": ["0805211535"], + "publication": "Schocken (2008), Edition: Reprint, 240 pages", + "date": "2008", + "summary": "The Life of David (Jewish Encounters Series) by Robert Pinsky (2008)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.4092"], + "wording": ["David, King of Israel--Biblical leader", + "Historical books of Old Testament", + "Religion", + "Samuel", + "The Bible"] + }, + "lcc": { + "code": "BS580.D3 P56" + }, + "subject": [["Bible. O.T.", + "Biography"], + ["David, King of Israel"], + ["David, king of Israel"], + ["Israel", + "Kings and rulers", + "Biography"]], + "source": "amazon.com books", + "workcode": "220750", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 7.99 inches", + "height": "7.99 inches", + "thickness": "0.68 inches", + "length": "5.14 inches", + "dimensions": "7.99 x 5.14 x 0.68 inches", + "weight": "0.5621787681 pounds", + "pages": "240 " +}, +"271644253": { + "books_id": "271644253", + "title": "Being a Blessing: 54 Ways You Can Help People Living With AIDS", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldstein, Harris R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldstein, Harris R.", + "fl": "Harris R. Goldstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1881283089", + "isbn": { + "0": "1881283089", + "2": "9781881283089" + }, + "asin": "1881283089", + "ean": ["1881283089"], + "publication": "Alef Design Group (1994), 160 pages", + "date": "1994", + "summary": "Being a Blessing: 54 Ways You Can Help People Living With AIDS by Harris R. Goldstein (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["362.1"], + "wording": ["People with physical illnesses", + "Social problems and social services", + "Social problems of and services to groups of people", + "Social sciences"] + }, + "lcc": { + "code": "RC607.A26 G56" + }, + "source": "amazon.com books", + "workcode": "638298", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "160 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.5 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.5 inches", + "weight": "0.6 pounds", + "pages": "160 " +}, +"271644258": { + "books_id": "271644258", + "title": "The Bond of Life A Books for Mourners", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Harlow, Jules", + "primaryauthorrole": "Editor", + "secondaryauthor": "Edward T. Sandrow", + "secondaryauthorroles": "Introduction", + "authors": [{ + "lf": "Harlow, Jules", + "fl": "Jules Harlow", + "role": "Editor" + }, + { + "lf": "Edward T. Sandrow", + "fl": "Edward T. Sandrow", + "role": "Introduction" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000R30GDQ", + "publication": "The Rabbinical Assembly (1983), Edition: Second Edition, 315 pages", + "date": "1983", + "summary": "The Bond of Life A Books for Mourners by Jules Harlow (1983)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.M7 Z646" + }, + "source": "amazon.com books", + "workcode": "9028790", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "315 p.", + "weight": "1.15 pounds", + "pages": "315 " +}, +"271644269": { + "books_id": "271644269", + "title": "Diaries of Theodor Herzl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Herzl, Theodor", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Herzl, Theodor", + "fl": "Theodor Herzl", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1131159276", + "isbn": { + "0": "1131159276", + "2": "9781131159270" + }, + "asin": "B0007DKYKQ", + "ean": ["1131159276"], + "publication": "Grosset & Dunlap (1962), Edition: Universal Library ed, 494 pages", + "date": "1962", + "summary": "Diaries of Theodor Herzl by Theodor Herzl (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS149.H5253" + }, + "subject": [["Zionism"]], + "source": "amazon.com books", + "workcode": "2935307", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"271644274": { + "books_id": "271644274", + "title": "Destination Palestine: The story of the Haganah ship Exodus 1947", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gruber, Ruth", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gruber, Ruth", + "fl": "Ruth Gruber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DMK0I", + "publication": "Current Books (1948), Edition: Second Printing, 134 pages", + "date": "1948", + "summary": "Destination Palestine: The story of the Haganah ship Exodus 1947 by Ruth Gruber (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["304.8"], + "wording": ["Factors affecting social behavior", + "Movement of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS126 .G75" + }, + "source": "amazon.com books", + "workcode": "1091585", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "134 p.; 5.83 x 0.83 inches", + "height": "0.83 inches", + "thickness": "4.65 inches", + "length": "5.83 inches", + "dimensions": "0.83 x 5.83 x 4.65 inches", + "weight": "0.12 pounds", + "pages": "134 " +}, +"271644275": { + "books_id": "271644275", + "title": "Learning Laughter", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Spender, Stephen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Spender, Stephen", + "fl": "Stephen Spender", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0837119588", + "isbn": { + "0": "0837119588", + "2": "9780837119588" + }, + "asin": "0837119588", + "ean": ["0837119588"], + "publication": "Greenwood Pub Group (1953), Edition: First Edition, 207 pages", + "date": "1953", + "summary": "Learning Laughter by Stephen Spender (1953)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["362.7"], + "wording": ["Child welfare", + "Social problems and social services", + "Social problems of and services to groups of people", + "Social sciences"] + }, + "lcc": { + "code": "HV800.I8 S6" + }, + "source": "amazon.com books", + "workcode": "11687966", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "207 p.", + "weight": "1 pound", + "pages": "207 " +}, +"271644285": { + "books_id": "271644285", + "title": "Language of Faith", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glatzer, Nahum N.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glatzer, Nahum N.", + "fl": "Nahum N. Glatzer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805209115", + "isbn": { + "0": "0805209115", + "2": "9780805209112" + }, + "asin": "0805209115", + "ean": ["0805209115"], + "publication": "Schocken (1988), Edition: 3rd, 336 pages", + "date": "1988", + "summary": "Language of Faith by Nahum N. Glatzer (1988)", + "language": ["Hebrew", + "English"], + "language_codeA": ["heb", + "eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb", + "eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM724 .G5" + }, + "subject": [["Judaism", + "Prayers and devotions"]], + "source": "amazon.com books", + "workcode": "43822", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.", + "weight": "1.14860838502 pounds", + "pages": "336 " +}, +"271644312": { + "books_id": "271644312", + "title": "These are my people;: A treasury of biographies of heroes of the Jewish spirit from Abraham to Leo Baeck", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gersh, Harry", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gersh, Harry", + "fl": "Harry Gersh", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006AVXNC", + "publication": "Behrman House (1959), Edition: First Edition, 408 pages", + "date": "1959", + "summary": "These are my people;: A treasury of biographies of heroes of the Jewish spirit from Abraham to Leo Baeck by Harry Gersh (1959)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920.0092924"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "General and collective by localities", + "History & geography"] + }, + "lcc": { + "code": "DS115.G4" + }, + "subject": [["Jews", + "Biography"]], + "source": "amazon.com books", + "workcode": "2892118", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644326": { + "books_id": "271644326", + "title": "The secret of happiness", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Rabbi David Miller", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabbi David Miller", + "fl": "Rabbi David Miller", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000WV9DRI", + "publication": "COMMETTEE OF RABBI DAVID MILLER FOUNDATION (1937), Edition: First Edition, 305 pages", + "date": "1937", + "summary": "The secret of happiness by Rabbi David Miller (1937)", + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723.M5" + }, + "source": "amazon.com books", + "workcode": "4785216", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644341": { + "books_id": "271644341", + "title": "Tuesdays with Morrie: An Old Man, a Young Man, and Life's Greatest Lesson, 25th Anniversary Edition", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Albom, Mitch", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Albom, Mitch", + "fl": "Mitch Albom", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780767905923", + "isbn": ["9780767905923", + "076790592X"], + "asin": "076790592X", + "ean": ["076790592X"], + "publication": "Crown (2002), Edition: Anniversary,Reprint, 192 pages", + "date": "2002", + "summary": "Tuesdays with Morrie: An Old Man, a Young Man, and Life's Greatest Lesson, 25th Anniversary Edition by Mitch Albom (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["378.12092"], + "wording": ["Biographies", + "Education", + "Higher education (Tertiary education)", + "Organization and management; curriculums", + "Social sciences", + "Teaching staff; Faculty"] + }, + "lcc": { + "code": "LD571.B418 S383" + }, + "subject": { + "0": ["Albom, Mitch, 1958-"], + "1": ["Amyotrophic Lateral Sclerosis"], + "3": ["Amyotrophic lateral sclerosis", + "Patients", + "United States", + "Biography"], + "4": ["Amyotrophic lateral sclerosis", + "United States", + "Biography"], + "5": ["Amyotrophic lateral sclerosis", + "United States", + "Patients", + "Biography"], + "6": ["Attitude to Death"], + "8": ["Attitude to death"], + "10": ["Brandeis University", + "Faculty", + "Biography"], + "11": ["Death", + "Case studies"], + "12": ["Death", + "Psychological aspects", + "Case studies"], + "14": ["Intergenerational Relations"], + "16": ["Intergenerational relations"], + "18": ["Intergenerational relations", + "United States"], + "19": ["Intergenerational relations", + "United States", + "Case studies"], + "20": ["Patients", + "United States", + "Biography"], + "22": ["Schwartz, Morrie", + "Philosophy"], + "23": ["Schwartz, Morris S"], + "24": ["Schwartz, Morris S."], + "25": ["Teacher-student relationships", + "United States"], + "26": ["Teacher-student relationships", + "United States", + "Case studies"] + }, + "awards": ["100 Essential New England Books", + "55 Nonfiction Books to Read in a Lifetime", + "ALA Outstanding Books for the College Bound", + "Amazon.com Best Books", + "Audie Award", + "Eliot Rosewater Indiana High School Book Award", + "New York Times bestseller", + "Publishers Weekly Bestseller", + "Read Aloud Indiana Book Award", + "UC Berkeley Summer Reading List", + "Virginia Readers' Choice"], + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com all media", + "workcode": "3331", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 7.25 inches", + "height": "7.25 inches", + "thickness": "0.6 inches", + "length": "5 inches", + "dimensions": "7.25 x 5 x 0.6 inches", + "weight": "2.314853751 pounds", + "pages": "192 " +}, +"271644354": { + "books_id": "271644354", + "title": "A book of Torah readings / by Morris Epstein ; paintings by Ezekiel Schloss", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Epstein, Morris", + "primaryauthorrole": "Author", + "secondaryauthor": "Schloss, Ezekiel", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Epstein, Morris", + "fl": "Morris Epstein", + "role": "Author" + }, + { + "lf": "Schloss, Ezekiel", + "fl": "Ezekiel Schloss", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B005WH8KZ8", + "publication": "Ktav Pub. House (1960), Edition: First Edition", + "date": "1960", + "summary": "A book of Torah readings / by Morris Epstein ; paintings by Ezekiel Schloss by Morris Epstein (1960)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["220.5"], + "wording": ["Modern versions and translations", + "Religion", + "The Bible", + "The Bible"] + }, + "lcc": { + "code": "BS1226.E7" + }, + "source": "amazon.com all media", + "workcode": "5085897", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.35 pounds" +}, +"271644365": { + "books_id": "271644365", + "title": "Rebirth and destiny of Israel;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DEAM4", + "publication": "Philosophical Library (1954), Edition: First Edition, 539 pages", + "date": "1954", + "summary": "Rebirth and destiny of Israel; by David Ben-Gurion (1954)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94004"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.B4" + }, + "subject": [["Palestine", + "History"]], + "source": "amazon.com books", + "workcode": "2276984", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644377": { + "books_id": "271644377", + "title": "Women Who Would Be Rabbis: A History of Women's Ordination 1889-1985", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nadell, Pamela Susan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nadell, Pamela Susan", + "fl": "Pamela Susan Nadell", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0807036498", + "isbn": { + "0": "0807036498", + "2": "9780807036495" + }, + "asin": "0807036498", + "ean": ["0807036498"], + "upc": ["046442036498"], + "publication": "Beacon Press (1999), 324 pages", + "date": "1999", + "summary": "Women Who Would Be Rabbis: A History of Women's Ordination 1889-1985 by Pamela Susan Nadell (1999)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.6"], + "wording": ["Jewish Leaders and Education", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM652 .N33" + }, + "subject": [["Ordination of women", + "Judaism", + "History"], + ["Women in Judaism"], + ["Women rabbis", + "United States", + "History"]], + "source": "amazon.com books", + "workcode": "222165", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "324 p.; 9 inches", + "height": "9 inches", + "thickness": "0.7 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.7 inches", + "weight": "0.95 pounds", + "pages": "324 " +}, +"271644404": { + "books_id": "271644404", + "title": "Printer's Devil to Publisher: Adolph S. Ochs of the New York Times", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Faber, Doris", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Faber, Doris", + "fl": "Doris Faber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1883789095", + "isbn": { + "0": "1883789095", + "2": "9781883789091" + }, + "asin": "1883789095", + "ean": ["1883789095"], + "publication": "Black Dome Pr (1996), 192 pages", + "date": "1996", + "summary": "Printer's Devil to Publisher: Adolph S. Ochs of the New York Times by Doris Faber (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["070.5"], + "wording": ["Computer science, information & general works", + "Documentary media, educational media, news media; journalism; publishing", + "News media, journalism & publishing", + "Publishing"] + }, + "lcc": { + "code": "PN4874.O4 F3" + }, + "source": "amazon.com books", + "workcode": "119057", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "0.7 pounds", + "pages": "192 " +}, +"271644414": { + "books_id": "271644414", + "title": "New Face in the Mirror: A Novel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Dayan, Yael", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dayan, Yael", + "fl": "Yael Dayan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00TQEM1BC", + "publication": "Open Road Media (2015), 162 pages", + "date": "2015", + "summary": "New Face in the Mirror: A Novel by Yael Dayan (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ4.D275 PR9510 .9" + }, + "awards": ["New York Times bestseller"], + "genre": ["Fiction", + "General Fiction"], + "genre_id": ["17160326", + "2"], + "source": "amazon.com books", + "workcode": "2387868", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"271644428": { + "books_id": "271644428", + "title": "Emet Ve-Emunah: Statement of Principles of Conservative Judaism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ve-Emunah, Emet", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ve-Emunah, Emet", + "fl": "Emet Ve-Emunah", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0916219062", + "isbn": { + "0": "0916219062", + "2": "9780916219062" + }, + "asin": "0916219062", + "ean": ["0916219062"], + "publication": "Jewish Theological Seminary of America (1988), Edition: 2nd, 57 pages", + "date": "1988", + "summary": "Emet Ve-Emunah: Statement of Principles of Conservative Judaism by Emet Ve-Emunah (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM197 .C65" + }, + "source": "amazon.com books", + "workcode": "22823553", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "57 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "5.25 inches", + "length": "0.25 inches", + "dimensions": "8.5 x 0.25 x 5.25 inches", + "weight": "0.2 pounds", + "pages": "57 " +}, +"271644437": { + "books_id": "271644437", + "title": "The Anguish of the Jews: Twenty-Three Centuries of Antisemitism (Stimulus Books)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Flannery, Edward H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Flannery, Edward H.", + "fl": "Edward H. Flannery", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0809143240", + "isbn": { + "0": "0809143240", + "2": "9780809143245" + }, + "asin": "0809143240", + "ean": ["0809143240"], + "publication": "Paulist Press (2004), Edition: 2nd, 400 pages", + "date": "2004", + "summary": "The Anguish of the Jews: Twenty-Three Centuries of Antisemitism (Stimulus Books) by Edward H. Flannery (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.452"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS145.F6" + }, + "subject": [["Antisemitism", + "History"]], + "source": "amazon.com books", + "workcode": "109722", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "400 p.; 9.02 inches", + "height": "9.02 inches", + "thickness": "0.85 inches", + "length": "6.08 inches", + "dimensions": "9.02 x 6.08 x 0.85 inches", + "weight": "1.15081300764 pounds", + "pages": "400 " +}, +"271644439": { + "books_id": "271644439", + "title": "Berlin Diary", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Shirer, William L.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shirer, William L.", + "fl": "William L. Shirer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0795300298", + "isbn": { + "0": "0795300298", + "2": "9780795300295" + }, + "asin": "0795300298", + "ean": ["0795300298"], + "publication": "Open Road Integrated Media, Inc. (2022), 384 pages", + "date": "2022", + "summary": "Berlin Diary by William L. Shirer (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D811 .S5" + }, + "subject": { + "0": ["Europe", + "Politics and government", + "1918-1945"], + "2": ["Europe", + "Politics and government", + "1938-"], + "3": ["Germany", + "Politics and government", + "1933-1945"], + "5": ["Germany", + "politics and government", + "1933-"], + "6": ["Hitler, Adolf, 1889-1945"], + "7": ["Journalists", + "United States", + "Diaries"], + "9": ["Shirer, William L. (William Lawrence), 1904-"], + "10": ["Shirer, William L. (William Lawrence), 1904-", + "Diaries"], + "11": ["Shirer, William L. (William Lawrence), 1904-1993"], + "12": ["World War, 1939-1945", + "Germany"], + "14": ["World War, 1939-1945", + "Personal narratives, American"], + "16": ["World War, 1939-1945", + "personal narratives, American"], + "17": ["World war, 1939-1945", + "Germany"], + "18": ["World war, 1939-1945", + "Personal narratives, American"] + }, + "series": ["Berlin Diary"], + "originaltitle": "Berlin Diary: The Journal of a Foreign Correspondent 1934-1941", + "awards": ["1000 Books to Read Before You Die", + "Johnson Brigham Plaque Award", + "Publishers Weekly Bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "65118", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 9 inches", + "height": "9 inches", + "thickness": "0.96 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.96 inches", + "weight": "1.23899791244 pounds", + "pages": "384 " +}, +"271644460": { + "books_id": "271644460", + "title": "Cologne (Jewish Communities Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kober, Adolf", + "primaryauthorrole": "Author", + "secondaryauthor": "Grayzel, Solomon", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Kober, Adolf", + "fl": "Adolf Kober", + "role": "Author" + }, + { + "lf": "Grayzel, Solomon", + "fl": "Solomon Grayzel", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000PWJS5Q", + "publication": "Jewish Publication Society of America (1940), Edition: First Edition, 412 pages", + "date": "1940", + "summary": "Cologne (Jewish Communities Series) by Adolf Kober (1940)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS135.G4 C67" + }, + "source": "amazon.com books", + "workcode": "5389343", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "412 p.", + "weight": "1 pound", + "pages": "412 " +}, +"271644463": { + "books_id": "271644463", + "title": "Documents of Destruction", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Raul, Ed. Hilberg", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Raul, Ed. Hilberg", + "fl": "Ed. Hilberg Raul", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "081296165X", + "isbn": { + "0": "081296165X", + "2": "9780812961652" + }, + "asin": "081296165X", + "ean": ["081296165X"], + "publication": "Quadrangle Books (1971), 242 pages", + "date": "1971", + "summary": "Documents of Destruction by Ed. Hilberg Raul (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D810.J4 H52" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Sources"]], + "source": "amazon.com books", + "workcode": "2558265", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "242 p.", + "weight": "0.7 pounds", + "pages": "242 " +}, +"271644473": { + "books_id": "271644473", + "title": "From the ends of the earth : the peoples of Israel.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sachar, Howard Morley", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sachar, Howard Morley", + "fl": "Howard Morley Sachar", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000VGBT4Y", + "publication": "Delta (1970), Edition: Second Edition, 510 pages", + "date": "1970", + "summary": "From the ends of the earth : the peoples of Israel. by Howard Morley Sachar (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.93"], + "wording": ["Cyprus", + "History & geography", + "History of Asia", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.S15" + }, + "source": "amazon.com books", + "workcode": "3732097", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "510 p.", + "weight": "0.79 pounds", + "pages": "510 " +}, +"271644474": { + "books_id": "271644474", + "title": "Wrestling with the Angel: Jewish Insights on Death and Mourning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Riemer, Jack", + "primaryauthorrole": "Editor", + "secondaryauthor": "Shwerwin B. Nuland", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Riemer, Jack", + "fl": "Jack Riemer", + "role": "Editor" + }, + { + "lf": "Shwerwin B. Nuland", + "fl": "Shwerwin B. Nuland", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805241299", + "isbn": { + "0": "0805241299", + "2": "9780805241297" + }, + "asin": "0805241299", + "ean": ["0805241299"], + "publication": "Schocken Books (1995), Edition: First Edition, 432 pages", + "date": "1995", + "summary": "Wrestling with the Angel: Jewish Insights on Death and Mourning by Jack Riemer (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM635 .W73" + }, + "source": "amazon.com books", + "workcode": "1353086", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "432 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "1.5 inches", + "length": "6.5 inches", + "dimensions": "9.75 x 6.5 x 1.5 inches", + "weight": "1.65 pounds", + "pages": "432 " +}, +"271644512": { + "books_id": "271644512", + "title": "The Healer of Shattered Hearts: A Jewish View of God", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wolpe, David J. J.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wolpe, David J. J.", + "fl": "David J. J. Wolpe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140147950", + "isbn": { + "0": "0140147950", + "2": "9780140147957" + }, + "asin": "0140147950", + "ean": ["0140147950"], + "publication": "Penguin Publishing Group (1991), Edition: Reprint, 208 pages", + "date": "1991", + "summary": "The Healer of Shattered Hearts: A Jewish View of God by David J. J. Wolpe (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.311"], + "wording": ["God", + "God and Hierarchy of Super-Human Beings", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM610 .W64" + }, + "subject": [["God (Judaism)"]], + "source": "amazon.com books", + "workcode": "768823", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "208 p.; 7.76 x 0.48 inches", + "height": "0.48031496014 inches", + "thickness": "5.0787401523 inches", + "length": "7.7559055039 inches", + "dimensions": "0.48031496014 x 7.7559055039 x 5.0787401523 inches", + "weight": "0.4629707502 pounds", + "pages": "208 " +}, +"271644531": { + "books_id": "271644531", + "title": "Everyman's History of the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ish-Kishor, Sulamith", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ish-Kishor, Sulamith", + "fl": "Sulamith Ish-Kishor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B07RX9TD59", + "publication": "Frederick Fell Publishers, Inc. (2018), 270 pages", + "date": "2018", + "summary": "Everyman's History of the Jews by Sulamith Ish-Kishor (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS118.I73" + }, + "source": "amazon.com books", + "workcode": "10803507", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"271644554": { + "books_id": "271644554", + "title": "VIENNA [HISTORY OF JEWS IN VIENNA]", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Vienna) Grunwald, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Vienna) Grunwald, Max", + "fl": "Max Vienna) Grunwald", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00C3GWHVE", + "publication": "Philadelphia: Jewish Publication Society (1936), Edition: First Edition", + "date": "1936", + "summary": "VIENNA [HISTORY OF JEWS IN VIENNA] by Max Vienna) Grunwald (1936)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com all media", + "workcode": "32876780", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644557": { + "books_id": "271644557", + "title": "Rereading The Rabbis: A Woman's Voice", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hauptman, Judith", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hauptman, Judith", + "fl": "Judith Hauptman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0813334063", + "isbn": { + "0": "0813334063", + "2": "9780813334066" + }, + "asin": "0813334063", + "ean": ["0813334063"], + "publication": "Westview Press (1998), Edition: Revised, 304 pages", + "date": "1998", + "summary": "Rereading The Rabbis: A Woman's Voice by Judith Hauptman (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM509.W7 H38" + }, + "subject": [["Talmud", + "Criticism, interpretation, etc"], + ["Talmud", + "Feminist criticism"], + ["Women in rabbinical literature"]], + "series": ["Radical Traditions"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality", + "Sexuality and Gender Studies"], + "genre_id": ["20275895", + "1247", + "1944", + "6880"], + "source": "amazon.com books", + "workcode": "542579", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9 inches", + "height": "9 inches", + "thickness": "0.5 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.5 inches", + "weight": "0.99869404686 pounds", + "pages": "304 " +}, +"271644568": { + "books_id": "271644568", + "title": "Rosh Hashanah Holiday Anthology", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "goodman, philip", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "goodman, philip", + "fl": "philip goodman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600232", + "isbn": { + "0": "0827600232", + "2": "9780827600232" + }, + "asin": "0827600232", + "ean": ["0827600232"], + "publication": "Jewish Publication Society of America (1970), Edition: First Edition, 379 pages", + "date": "1970", + "summary": "Rosh Hashanah Holiday Anthology by philip goodman (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.431"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice", + "Rosh Hashanah"] + }, + "lcc": { + "code": "BM695.N5 G6" + }, + "subject": [["Rosh ha-Shanah"]], + "series": ["JPS Holiday Anthologies"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com all media", + "workcode": "2043915", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "379 p.", + "height": "8.2 inches", + "thickness": "1.4 inches", + "length": "5.7 inches", + "dimensions": "8.2 x 5.7 x 1.4 inches", + "weight": "1.4 pounds", + "pages": "379 " +}, +"271644585": { + "books_id": "271644585", + "title": "The Jews in America: The Roots and Destiny of American Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dimont, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dimont, Max", + "fl": "Max Dimont", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0671242679", + "isbn": { + "0": "0671242679", + "2": "9780671242671" + }, + "asin": "0671242679", + "ean": ["0671242679"], + "publication": "Simon & Schuster (1979), Edition: First Edition, 286 pages", + "date": "1979", + "summary": "The Jews in America: The Roots and Destiny of American Jews by Max Dimont (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["973.04"], + "wording": ["Ethnic And National Groups", + "History & geography", + "History of North America", + "United States", + "United States"] + }, + "lcc": { + "code": "BM205.D55" + }, + "subject": { + "0": ["Jews", + "United States", + "History"], + "2": ["Judaism", + "United States", + "History"], + "4": ["United States", + "Religion"] + }, + "source": "amazon.com all media", + "workcode": "413369", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "286 p.", + "height": "8.6 inches", + "thickness": "1.2 inches", + "length": "5.9 inches", + "dimensions": "8.6 x 5.9 x 1.2 inches", + "weight": "1.12 pounds", + "pages": "286 " +}, +"271644589": { + "books_id": "271644589", + "title": "Mourning & Mitzvah (2nd Edition): A Guided Journal for Walking the Mourner’s Path Through Grief to Healing", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brener Majcs Ma Lcsw, Rabbi Anne", + "primaryauthorrole": "Author", + "secondaryauthor": "Riemer, Rabbi Jack|Cutter PhD, Rabbi William", + "secondaryauthorroles": "Contributor|Contributor", + "authors": [{ + "lf": "Brener Majcs Ma Lcsw, Rabbi Anne", + "fl": "Rabbi Anne Brener Majcs Ma Lcsw", + "role": "Author" + }, + { + "lf": "Riemer, Rabbi Jack", + "fl": "Rabbi Jack Riemer", + "role": "Contributor" + }, + { + "lf": "Cutter PhD, Rabbi William", + "fl": "Rabbi William Cutter PhD", + "role": "Contributor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1879045230", + "isbn": { + "0": "1879045230", + "2": "9781879045231" + }, + "asin": "1580231136", + "ean": ["1580231136"], + "publication": "Jewish Lights (2001), Edition: 2nd Edition, New, 304 pages", + "date": "2001", + "summary": "Mourning & Mitzvah (2nd Edition): A Guided Journal for Walking the Mourner’s Path Through Grief to Healing by Rabbi Anne Brener Majcs Ma Lcsw (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM712 .B7" + }, + "subject": [["Consolation (Judaism)"], + ["Consolation (Judaism)"], + ["Jewish mourning customs"]], + "source": "amazon.com books", + "workcode": "377884", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9 inches", + "height": "9 inches", + "thickness": "0.75984251891 inches", + "length": "7.49999999235 inches", + "dimensions": "9 x 7.49999999235 x 0.75984251891 inches", + "weight": "1.19931470528 pounds", + "pages": "304 " +}, +"271644598": { + "books_id": "271644598", + "title": "Josephus", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feuchtwanger, Lion", + "primaryauthorrole": "Author", + "secondaryauthor": "Muir, Willa|Muir, Edwin", + "secondaryauthorroles": "Translator|Translator", + "authors": [{ + "lf": "Feuchtwanger, Lion", + "fl": "Lion Feuchtwanger", + "role": "Author" + }, + { + "lf": "Muir, Willa", + "fl": "Willa Muir", + "role": "Translator" + }, + { + "lf": "Muir, Edwin", + "fl": "Edwin Muir", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0689703457", + "isbn": { + "0": "0689703457", + "2": "9780689703454" + }, + "asin": "0689703457", + "ean": ["0689703457"], + "publication": "Macmillan Pub Co (1973), 530 pages", + "date": "1973", + "summary": "Josephus by Lion Feuchtwanger (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["833.91"], + "wording": ["1900-", + "1900-1990", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "PZ3.F433 J" + }, + "subject": [["Biographical fiction"], + ["Jerusalem", + "History", + "Siege, 70 A.D.", + "Fiction"], + ["Josephus, Flavius", + "Fiction"], + ["Josephus, Flavius", + "Fiction. cn"], + ["Rome", + "History", + "Flavians, 69-96", + "Fiction"], + ["Sieges", + "Fiction"], + ["War stories"], + ["biographical fiction"]], + "series": ["Josephus Trilogy", + "Josephus Trilogie"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com all media", + "workcode": "591307", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "530 p.", + "height": "8.1 inches", + "thickness": "1.3 inches", + "length": "5.4 inches", + "dimensions": "8.1 x 5.4 x 1.3 inches", + "weight": "1.3 pounds", + "pages": "530 " +}, +"271644606": { + "books_id": "271644606", + "title": "Complete Festival Series - Chanukah, Passover, Purim, Shovuoth, Fourth Printing", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Mindel, Nissan", + "primaryauthorrole": "Author", + "secondaryauthor": "Illustrated Throughout", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Mindel, Nissan", + "fl": "Nissan Mindel", + "role": "Author" + }, + { + "lf": "Illustrated Throughout", + "fl": "Illustrated Throughout", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000RW036W", + "publication": "Merkos L'inyonei Chinuch (1961)", + "date": "1961", + "summary": "Complete Festival Series - Chanukah, Passover, Purim, Shovuoth, Fourth Printing by Nissan Mindel (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.43"], + "wording": ["Festivals & Holidays", + "Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": [], + "source": "amazon.com all media", + "workcode": "4663258", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644634": { + "books_id": "271644634", + "title": "SEFER HAYASHAR. The Book of the Righteous. Signed by the editor.", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Seymour J.; Zerahiah ha-Yevani", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Seymour J.; Zerahiah ha-Yevani", + "fl": "Seymour J.; Zerahiah ha-Yevani Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002ZW84MW", + "publication": "KTAV Publishing House, Inc (1973), Edition: First Edition", + "date": "1973", + "summary": "SEFER HAYASHAR. The Book of the Righteous. Signed by the editor. by Seymour J.; Zerahiah ha-Yevani Cohen (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876807", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644646": { + "books_id": "271644646", + "title": "Vilna (Jewish Communities Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cohen, Israel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cohen, Israel", + "fl": "Israel Cohen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827604157", + "isbn": { + "0": "0827604157", + "2": "9780827604155" + }, + "asin": "0827604157", + "ean": ["0827604157"], + "publication": "Jewish Pubn Society (1992), Edition: Facsimile", + "date": "1992", + "summary": "Vilna (Jewish Communities Series) by Israel Cohen (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.5"], + "wording": ["Caucasus region [Lithuania now 947.93]", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries"] + }, + "lcc": { + "code": "DS135.R93 V5" + }, + "subject": [["Jews", + "Lithuania", + "Vilnius"], + ["Vilnius (Lithuania)", + "History"]], + "source": "amazon.com books", + "workcode": "1592323", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "6.75 inches", + "height": "6.75 inches", + "thickness": "1.5 inches", + "length": "4.75 inches", + "dimensions": "6.75 x 4.75 x 1.5 inches", + "weight": "1.35 pounds" +}, +"271644648": { + "books_id": "271644648", + "title": "God Was in This Place & I, I Did Not Know\u201525th Anniversary Ed: Finding Self, Spirituality and Ultimate Meaning", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kushner, Rabbi Lawrence", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kushner, Rabbi Lawrence", + "fl": "Rabbi Lawrence Kushner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580238513", + "isbn": { + "0": "1580238513", + "2": "9781580238519" + }, + "asin": "1580238513", + "ean": ["1580238513"], + "publication": "Jewish Lights (2016), Edition: 25th Anniversary Edition, New, 192 pages", + "date": "2016", + "summary": "God Was in This Place & I, I Did Not Know\u201525th Anniversary Ed: Finding Self, Spirituality and Ultimate Meaning by Rabbi Lawrence Kushner (2016)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM723 .K868" + }, + "subject": { + "0": ["Bible. O.T. Genesis XXVIII, 16", + "Criticism, interpretation, etc., Jewish"], + "1": ["God (Judaism)", + "History of doctrines"], + "3": ["Hasidism"], + "5": ["Spiritual life", + "Judaism"] + }, + "source": "amazon.com books", + "workcode": "357039", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "192 p.; 9 inches", + "height": "9 inches", + "thickness": "0.53149606245 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.53149606245 inches", + "weight": "0.6 pounds", + "pages": "192 " +}, +"271644658": { + "books_id": "271644658", + "title": "To Jerusalem and Back : a Personal Account / Saul Bellow", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bellow, Saul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bellow, Saul", + "fl": "Saul Bellow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001IPVRBM", + "publication": "Viking Press (1976), Edition: 3rd printing", + "date": "1976", + "summary": "To Jerusalem and Back : a Personal Account / Saul Bellow by Saul Bellow (1976)", + "language": ["German"], + "language_codeA": ["ger"], + "originallanguage": ["English"], + "originallanguage_codeA": ["ger", + "eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS107 .B37" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Arab-Israeli conflict", + "1973-1993"], + "3": ["Authors, American", + "20th century", + "Biography"], + "4": ["Authors, American", + "Biography"], + "5": ["Bellow, Saul", + "Travel", + "Israel"], + "6": ["Israel", + "Description and travel"], + "8": ["Jerusalem", + "Social life and customs"], + "9": ["Large Type Books"], + "10": ["Large type books"] + }, + "awards": ["New York Times bestseller", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Travel"], + "genre_id": ["20275895", + "1240", + "3578"], + "source": "amazon.com books", + "workcode": "29542", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.000625 pounds" +}, +"271644666": { + "books_id": "271644666", + "title": "In the Paths of Our Fathers: Insights into Pirkei Avot from the Works of the Lubavitcher Rebbe", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Schneersohn, Menahem Mendel", + "primaryauthorrole": "Author", + "secondaryauthor": "Touger, Eliyahu", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Schneersohn, Menahem Mendel", + "fl": "Menahem Mendel Schneersohn", + "role": "Author" + }, + { + "lf": "Touger, Eliyahu", + "fl": "Eliyahu Touger", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0826605354", + "isbn": { + "0": "0826605354", + "2": "9780826605351" + }, + "asin": "0826605354", + "ean": ["0826605354"], + "publication": "Kehot Pubns Society (1998), 240 pages", + "date": "1998", + "summary": "In the Paths of Our Fathers: Insights into Pirkei Avot from the Works of the Lubavitcher Rebbe by Menahem Mendel Schneersohn (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.1234706"], + "wording": ["Jewish writings", + "Judaism", + "Other religions", + "Religion", + "Talmud"] + }, + "lcc": { + "code": "BM506.A23 S275" + }, + "source": "amazon.com books", + "workcode": "1575450", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "240 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "0.75 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 0.75 inches", + "weight": "1.3 pounds", + "pages": "240 " +}, +"271644669": { + "books_id": "271644669", + "title": "In the courtyards of Jerusalem: Short stories", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Brandwein, Naftali Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brandwein, Naftali Chaim", + "fl": "Naftali Chaim Brandwein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DKV9U", + "publication": "Jewish Publication Society of America (1967), Edition: First Edition, 244 pages", + "date": "1967", + "summary": "In the courtyards of Jerusalem: Short stories by Naftali Chaim Brandwein (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813"], + "wording": ["American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.B8197 I" + }, + "source": "amazon.com books", + "workcode": "6627899", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "244 p.", + "weight": "1 pound", + "pages": "244 " +}, +"271644676": { + "books_id": "271644676", + "title": "When Bad Things Happen to Good People", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kushner, Harold S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kushner, Harold S.", + "fl": "Harold S. Kushner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9781400034727", + "isbn": ["9781400034727", + "1400034728"], + "asin": "1400034728", + "ean": ["8601419952182"], + "publication": "Anchor (2004), Edition: Reprint, 176 pages", + "date": "2004", + "summary": "When Bad Things Happen to Good People by Harold S. Kushner (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.311"], + "wording": ["God", + "God and Hierarchy of Super-Human Beings", + "Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM645.P7 K87" + }, + "subject": { + "0": ["Adaptation, Psychological"], + "1": ["Adaptation, psychological"], + "2": ["God", + "Impartiality"], + "3": ["Good and evil"], + "4": ["Good and evil (Judaism)"], + "5": ["Judaism", + "Doctrines", + "Congresses"], + "6": ["Judaism", + "Psychology"], + "7": ["Judaism", + "psychology"], + "8": ["Kushner, Harold S"], + "9": ["Large Type Books"], + "10": ["Large type books"], + "12": ["Pastoral counseling (Judaism)"], + "14": ["Providence and government of God", + "Judaism"], + "16": ["Providence and government of God", + "Judaism", + "Congresses"], + "17": ["Religion and Psychology"], + "18": ["Religion and psychology"], + "19": ["Suffering"], + "21": ["Suffering", + "Religious aspects", + "Judaism"], + "22": ["Theodicy"], + "24": ["Theodicy", + "Congresses"], + "25": ["suffering"], + "26": ["theodicy"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "66879", + "1944"], + "source": "amazon.com books", + "workcode": "81739", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "176 p.; 7.96 inches", + "height": "7.96 inches", + "thickness": "0.46 inches", + "length": "5.18 inches", + "dimensions": "7.96 x 5.18 x 0.46 inches", + "weight": "2.314853751 pounds", + "pages": "176 " +}, +"271644689": { + "books_id": "271644689", + "title": "Self-portrait of a hero: The letters of Jonathan Netanyahu (1963-1976)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Netanyahu, Yonatan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Netanyahu, Yonatan", + "fl": "Yonatan Netanyahu", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394513762", + "isbn": { + "0": "0394513762", + "2": "9780394513768" + }, + "asin": "0394513762", + "ean": ["0394513762"], + "publication": "Random House (1980), Edition: 1st ed,2nd ptg, 304 pages", + "date": "1980", + "summary": "Self-portrait of a hero: The letters of Jonathan Netanyahu (1963-1976) by Yonatan Netanyahu (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["356.166"], + "wording": ["Foot forces and warfare", + "Organization", + "Paratroopers", + "Public administration & military science", + "Social sciences", + "Special infantry troops"] + }, + "lcc": { + "code": "U55.N46 A313" + }, + "subject": [["Israel", + "Armed Forces", + "Officers", + "Correspondence"], + ["Israel", + "Officers", + "Correspondence"], + ["Netanyahu, Yonatan, 1946-1976"]], + "source": "amazon.com books", + "workcode": "1654366", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.; 9.3 x 1.1 inches", + "height": "1.1 inches", + "thickness": "6.3 inches", + "length": "9.3 inches", + "dimensions": "1.1 x 9.3 x 6.3 inches", + "weight": "1.65 pounds", + "pages": "304 " +}, +"271644691": { + "books_id": "271644691", + "title": "Firstfruits: A Harvest of 25 Years of Israeli Writing", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Michener, James A.", + "primaryauthorrole": "Editor", + "secondaryauthor": "Potok, Chaim", + "secondaryauthorroles": "Foreword", + "authors": [{ + "lf": "Michener, James A.", + "fl": "James A. Michener", + "role": "Editor" + }, + { + "lf": "Potok, Chaim", + "fl": "Chaim Potok", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827600186", + "isbn": { + "0": "0827600186", + "2": "9780827600188" + }, + "asin": "0827600186", + "ean": ["0827600186"], + "upc": ["000827600186"], + "publication": "The Jewish Publication Society of America (1973), 346 pages", + "date": "1973", + "summary": "Firstfruits: A Harvest of 25 Years of Israeli Writing by James A. Michener (1973)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ1.M578 F" + }, + "subject": { + "0": ["Israel", + "Fiction"], + "1": ["Israel", + "Social life and customs", + "Fiction"], + "2": ["Jewish fiction"], + "4": ["Jews", + "Fiction"], + "6": ["Short stories, Israeli", + "Translations into English"] + }, + "source": "amazon.com books", + "workcode": "789566", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "346 p.", + "height": "8.5 inches", + "thickness": "1.5 inches", + "length": "5.9 inches", + "dimensions": "8.5 x 5.9 x 1.5 inches", + "weight": "1 pound", + "pages": "346 " +}, +"271644708": { + "books_id": "271644708", + "title": "Rabin: Our Life, His Legacy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Rabin, Leah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Rabin, Leah", + "fl": "Leah Rabin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0399142177", + "isbn": { + "0": "0399142177", + "2": "9780399142178" + }, + "asin": "0399142177", + "ean": ["0399142177"], + "publication": "G. P. Putnam's Sons (1997), 320 pages", + "date": "1997", + "summary": "Rabin: Our Life, His Legacy by Leah Rabin (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.R32 R34" + }, + "subject": { + "0": ["Generals", + "Israel", + "Biography"], + "2": ["Generals' spouses", + "Israel", + "Biography"], + "4": ["Prime ministers", + "Israel", + "Biography"], + "6": ["Prime ministers' spouses", + "Israel", + "Biography"], + "8": ["Rabin, Lea"], + "9": ["Rabin, Yitzhak, 1922-1995"], + "10": ["Rabin, Yitzhak, 1922-1995", + "Assassination"] + }, + "source": "amazon.com books", + "workcode": "1092955", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "320 p.; 9.63 inches", + "height": "9.63 inches", + "thickness": "1.25 inches", + "length": "6.63 inches", + "dimensions": "9.63 x 6.63 x 1.25 inches", + "weight": "1.55 pounds", + "pages": "320 " +}, +"271644714": { + "books_id": "271644714", + "title": "Making a Successful Jewish Interfaith Marriage: The Jewish Outreach Institute Guide to Opportunites, Challenges and Resources", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Olitzky, Kerry M.", + "primaryauthorrole": "Author", + "secondaryauthor": "Joan Peterson Littman", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Olitzky, Kerry M.", + "fl": "Kerry M. Olitzky", + "role": "Author" + }, + { + "lf": "Joan Peterson Littman", + "fl": "Joan Peterson Littman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580231705", + "isbn": { + "0": "1580231705", + "2": "9781580231701" + }, + "asin": "1580231705", + "ean": ["1580231705"], + "publication": "Jewish Lights (2002), Edition: 1, 176 pages", + "date": "2002", + "summary": "Making a Successful Jewish Interfaith Marriage: The Jewish Outreach Institute Guide to Opportunites, Challenges and Resources by Kerry M. Olitzky (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.84"], + "wording": ["Culture and institutions", + "Marriage, partnerships, unions; family", + "Social sciences", + "Social sciences, sociology & anthropology", + "Specific types of marriages, partnerships, unions"] + }, + "lcc": { + "code": "HQ1031 .O45" + }, + "source": "amazon.com books", + "workcode": "2444284", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "176 p.; 9 inches", + "height": "9 inches", + "thickness": "0.46850393653 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.46850393653 inches", + "weight": "0.54 pounds", + "pages": "176 " +}, +"271644737": { + "books_id": "271644737", + "title": "The impossible dilemma: Who is a Jew in the State of Israel?", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Kraines, Oscar", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kraines, Oscar", + "fl": "Oscar Kraines", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819703923", + "isbn": { + "0": "0819703923", + "2": "9780819703927" + }, + "asin": "0819703923", + "ean": ["0819703923"], + "publication": "Bloch Pub. Co (1976), Edition: First Edition, 156 pages", + "date": "1976", + "summary": "The impossible dilemma: Who is a Jew in the State of Israel? by Oscar Kraines (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["342.5694"], + "wording": ["Asia", + "Constitutional and administrative law", + "Law", + "Middle East", + "Social sciences"] + }, + "lcc": { + "code": "KMK2140 .K73" + }, + "source": "amazon.com books", + "workcode": "8827989", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "pages": "156 " +}, +"271644744": { + "books_id": "271644744", + "title": "Aftergrowth, and other stories;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nahman Bialik Hayyim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nahman Bialik Hayyim", + "fl": "Nahman Bialik Hayyim", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00085J6SE", + "publication": "THE JEWISH PUBLICATION SOCIETY OF AMERICA (1939), 216 pages", + "date": "1939", + "summary": "Aftergrowth, and other stories; by Nahman Bialik Hayyim (1939)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "und", + "heb"], + "ddc": { + "code": ["892.435"], + "wording": ["1885\u20131947", + "Afro-Asiatic literatures", + "Hebrew fiction", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ3.B46982 A" + }, + "subject": [["Jewish fiction"], + ["Jews", + "Fiction"]], + "source": "amazon.com books", + "workcode": "6298626", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "216 p.", + "weight": "0.992080179 pounds", + "pages": "216 " +}, +"271644755": { + "books_id": "271644755", + "title": "Letters of Jews: Through the Ages: 002", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kobler, Franz", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kobler, Franz", + "fl": "Franz Kobler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780852222133", + "isbn": ["9780852222133", + "0852222130"], + "asin": "0852222130", + "ean": ["0852222130"], + "publication": "Hebrew Pub Co (1978), 670 pages", + "date": "1978", + "summary": "Letters of Jews: Through the Ages: 002 by Franz Kobler (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["933.08"], + "wording": ["History & geography", + "History of ancient world (to ca. 499)", + "Palestine to 70"] + }, + "lcc": { + "code": "DS102.L37" + }, + "source": "amazon.com books", + "workcode": "3079022", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "670 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1.25 inches", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 1.25 inches", + "pages": "670 " +}, +"271644779": { + "books_id": "271644779", + "title": "The Peres Family", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Shankman, Sam", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Shankman, Sam", + "fl": "Sam Shankman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000868VJS", + "publication": "SOUTHERN PUBLISHERS` (1938), Edition: First Edition, 241 pages", + "date": "1938", + "summary": "The Peres Family by Sam Shankman (1938)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876819", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "241 p.", + "weight": "1 pound", + "pages": "241 " +}, +"271644780": { + "books_id": "271644780", + "title": "Antisemitism in Modern France", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Byrnes, Robert F", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Byrnes, Robert F", + "fl": "Robert F Byrnes", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001E72G1E", + "publication": "Howard Fertig (1969)", + "date": "1969", + "summary": "Antisemitism in Modern France by Robert F Byrnes (1969)", + "lcc": [], + "source": "amazon.com books", + "workcode": "32876820", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644793": { + "books_id": "271644793", + "title": "The Jewish War Veterans story,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Mosesson, Gloria R", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Mosesson, Gloria R", + "fl": "Gloria R Mosesson", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006CKHOQ", + "publication": "Jewish War Veterans of the United States of America (1971), Edition: First Edition, 224 pages", + "date": "1971", + "summary": "The Jewish War Veterans story, by Gloria R Mosesson (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["369.11"], + "wording": ["Associations", + "General associations", + "Hereditary, military, patriotic societies of United States", + "Social problems and social services", + "Social sciences"] + }, + "lcc": { + "code": "E184.J5 M67" + }, + "source": "amazon.com books", + "workcode": "8907619", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.", + "weight": "1.05 pounds", + "pages": "224 " +}, +"271644797": { + "books_id": "271644797", + "title": "The Inextinguishable Symphony: A True Story of Music and Love in Nazi Germany", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldsmith, Martin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldsmith, Martin", + "fl": "Martin Goldsmith", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780471078647", + "isbn": ["9780471078647", + "0471078646"], + "asin": "0471078646", + "ean": ["0471078646"], + "publication": "Trade Paper Press (2001), Edition: 1, 352 pages", + "date": "2001", + "summary": "The Inextinguishable Symphony: A True Story of Music and Love in Nazi Germany by Martin Goldsmith (2001)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "ML395 .G65" + }, + "subject": { + "0": ["Goldsmith, George, 1913-"], + "1": ["Goldsmith, Rosemary, 1917-1984"], + "2": ["Holocaust, Jewish (1939-1945)", + "Biography"], + "4": ["Jewish musicians", + "Germany", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "327702", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 9 inches", + "height": "9 inches", + "thickness": "0.95 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.95 inches", + "weight": "0.9810570659 pounds", + "pages": "352 " +}, +"271644838": { + "books_id": "271644838", + "title": "The Forgotten Ally by Van Paasen, Pierre(October 30, 2005) Mass Market Paperback", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Van Paassen, Pierre", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Van Paassen, Pierre", + "fl": "Pierre Van Paassen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B014S4DQEU", + "publication": "Top Executive Media", + "summary": "The Forgotten Ally by Van Paasen, Pierre(October 30, 2005) Mass Market Paperback by Pierre Van Paassen", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.5315296"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Social, political, economic history; Holocaust", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "D810.J4 V3" + }, + "subject": { + "0": ["Great Britain", + "Foreign relations"], + "1": ["Great Britain", + "Foreign relations", + "Palestine"], + "2": ["Palestine", + "Foreign relations"], + "3": ["Palestine", + "Foreign relations", + "Great Britain"], + "4": ["World War, 1939-1945", + "Jews"], + "6": ["World War, 1939-1945", + "Palestine"], + "8": ["Zionism"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy"], + "genre_id": ["20275895", + "1247", + "1599", + "3805"], + "source": "amazon.com books", + "workcode": "239780", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1" +}, +"271644845": { + "books_id": "271644845", + "title": "Never Again?: The Threat of the New Anti-Semitism", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Foxman, Abraham", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Foxman, Abraham", + "fl": "Abraham Foxman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060542462", + "isbn": { + "0": "0060542462", + "2": "9780060542467" + }, + "asin": "0060542462", + "ean": ["0060542462"], + "upc": ["099455024952"], + "publication": "HarperOne (2003), Edition: First Edition, 305 pages", + "date": "2003", + "summary": "Never Again?: The Threat of the New Anti-Semitism by Abraham Foxman (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS145 .F685" + }, + "subject": { + "0": ["Antisemitism"], + "2": ["Antisemitism", + "History"], + "3": ["Antisemitism", + "History", + "20th century"], + "4": ["Antisemitism", + "Islamic countries"], + "6": ["Antisemitism", + "Political aspects"], + "8": ["Islamic countries", + "Public opinion"] + }, + "source": "amazon.com books", + "workcode": "672283", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "305 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1.25 inches", + "weight": "1.3 pounds", + "pages": "305 " +}, +"271644868": { + "books_id": "271644868", + "title": "Strangers in Their Own Land: Young Jews in Austria and Germany Today", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sichrovsky, Peter.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sichrovsky, Peter.", + "fl": "Peter. Sichrovsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1850430330", + "isbn": { + "0": "1850430330", + "2": "9781850430339" + }, + "asin": "1850430330", + "ean": ["1850430330"], + "publication": "- (1986), 177 pages", + "date": "1986", + "summary": "Strangers in Their Own Land: Young Jews in Austria and Germany Today by Peter. Sichrovsky (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["943.004924"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Jews", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS135.G5" + }, + "subject": [["Children of Holocaust survivors", + "Austria", + "Biography"], + ["Children of Holocaust survivors", + "Germany (West)", + "Biography"], + ["Jews", + "Austria", + "Biography"], + ["Jews", + "Germany (West)", + "Biography"]], + "source": "amazon.com books", + "workcode": "1274591", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "177 p.; 7.99 x 1.85 inches", + "height": "1.85039 inches", + "thickness": "9.99998 inches", + "length": "7.99211 inches", + "dimensions": "1.85039 x 7.99211 x 9.99998 inches", + "weight": "1.19 pounds", + "pages": "177 " +}, +"271644871": { + "books_id": "271644871", + "title": "Strangers in Their Own Land: Young Jews in Austria and Germany Today", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sichrovsky, Peter.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sichrovsky, Peter.", + "fl": "Peter. Sichrovsky", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1850430330", + "isbn": { + "0": "1850430330", + "2": "9781850430339" + }, + "asin": "1850430330", + "ean": ["1850430330"], + "publication": "- (1986), 177 pages", + "date": "1986", + "summary": "Strangers in Their Own Land: Young Jews in Austria and Germany Today by Peter. Sichrovsky (1986)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["German"], + "originallanguage_codeA": ["eng", + "ger"], + "ddc": { + "code": ["943.004924"], + "wording": ["Ethnic And National Groups", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Jews", + "Standard subdivisions of Germany"] + }, + "lcc": { + "code": "DS135.G5" + }, + "subject": [["Children of Holocaust survivors", + "Austria", + "Biography"], + ["Children of Holocaust survivors", + "Germany (West)", + "Biography"], + ["Jews", + "Austria", + "Biography"], + ["Jews", + "Germany (West)", + "Biography"]], + "source": "amazon.com books", + "workcode": "1274591", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "177 p.; 7.99 x 1.85 inches", + "height": "1.85039 inches", + "thickness": "9.99998 inches", + "length": "7.99211 inches", + "dimensions": "1.85039 x 7.99211 x 9.99998 inches", + "weight": "1.19 pounds", + "pages": "177 " +}, +"271644889": { + "books_id": "271644889", + "title": "The History of Anti-Semitism, Volume 1: From the Time of Christ to the Court Jews", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Poliakov, Léon", + "primaryauthorrole": "Author", + "secondaryauthor": "Howard, Richard", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Poliakov, Léon", + "fl": "Léon Poliakov", + "role": "Author" + }, + { + "lf": "Howard, Richard", + "fl": "Richard Howard", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812218639", + "isbn": { + "0": "0812218639", + "2": "9780812218633" + }, + "asin": "0812218639", + "ean": ["0812218639"], + "publication": "University of Pennsylvania Press (2003), 352 pages", + "date": "2003", + "summary": "The History of Anti-Semitism, Volume 1: From the Time of Christ to the Court Jews by Léon Poliakov (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.8924"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Jews", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS145 .P4613" + }, + "series": ["Geschichte des Antisemitismus", + "Histoire de l'antis\u00e9mitisme", + "Poliakov's History of Anti-Semitism"], + "genre": ["Nonfiction", + "Anthropology", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "5022", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "4883252", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 9.24 inches", + "height": "9.24 inches", + "thickness": "1.06 inches", + "length": "5.88 inches", + "dimensions": "9.24 x 5.88 x 1.06 inches", + "weight": "1.3999353637 pounds", + "pages": "352 " +}, +"271644910": { + "books_id": "271644910", + "title": "Living biographies of religious leaders", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Henry Thomas and Dana Lee Thomas", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Henry Thomas and Dana Lee Thomas", + "fl": "Henry Thomas and Dana Lee Thomas", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00005W9X5", + "publication": "Blue Ribbon Books (1946), Edition: Reprint", + "date": "1946", + "summary": "Living biographies of religious leaders by Henry Thomas and Dana Lee Thomas (1946)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["200.92"], + "wording": ["Biography", + "History, geographic treatment, biography", + "Religion", + "Religion", + "Religion"] + }, + "lcc": { + "code": "BL72 .T36" + }, + "subject": [["Religious leaders"]], + "source": "amazon.com books", + "workcode": "818258", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.85 pounds" +}, +"271644911": { + "books_id": "271644911", + "title": "The Eagle Has Landed (Liam Devlin)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Higgins, Jack", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Higgins, Jack", + "fl": "Jack Higgins", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0425177181", + "isbn": { + "0": "0425177181", + "2": "9780425177181" + }, + "asin": "0425177181", + "ean": ["0425177181"], + "publication": "G.P. Putnam's Sons (2000), Edition: Reissue, 368 pages", + "date": "2000", + "summary": "The Eagle Has Landed (Liam Devlin) by Jack Higgins (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["823.914"], + "wording": ["1900-", + "1901-1999", + "1945-1999", + "English & Old English literatures", + "English fiction", + "Literature"] + }, + "lcc": { + "code": "PZ4.H6367 PR6058 .I343" + }, + "subject": { + "0": ["Adventure fiction"], + "1": ["Fiction in English"], + "2": ["Germany", + "Fiction"], + "4": ["Large type books"], + "5": ["Spy stories"], + "7": ["War stories"], + "9": ["World War, 1939-1945", + "Fiction"], + "10": ["World War, 1939-1945", + "Germany", + "Fiction"], + "12": ["World War, 1939-1945", + "Secret service", + "Fiction"], + "13": ["fiction in English"] + }, + "series": ["Kurt Steiner", + "Liam Devlin"], + "awards": ["Best Fiction for Young Adults", + "New York Times bestseller", + "Publishers Weekly Bestseller", + "Top 100 Crime Novels of All Time - UK Crime Writers' Association"], + "genre": ["Fiction", + "Historical Fiction", + "Suspense & Thriller"], + "genre_id": ["17160326", + "41890", + "485"], + "source": "amazon.com books", + "workcode": "49637", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "368 p.; 6.73 inches", + "height": "6.73 inches", + "thickness": "0.97 inches", + "length": "4.17 inches", + "dimensions": "6.73 x 4.17 x 0.97 inches", + "weight": "0.47 pounds", + "pages": "368 " +}, +"271644933": { + "books_id": "271644933", + "title": "Beloved Rabbi: An Account Of The Life And Works Of Henry Berkowitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Berkowitz, Max E", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Berkowitz, Max E", + "fl": "Max E Berkowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1432599364", + "isbn": { + "0": "1432599364", + "2": "9781432599362" + }, + "asin": "1432599364", + "ean": ["1432599364"], + "publication": "Kessinger Publishing (2007), 304 pages", + "date": "2007", + "summary": "Beloved Rabbi: An Account Of The Life And Works Of Henry Berkowitz by Max E Berkowitz (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "20654618", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "304 p.; 9 inches", + "height": "9 inches", + "thickness": "0.68 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.68 inches", + "weight": "0.99 pounds", + "pages": "304 " +}, +"271644944": { + "books_id": "271644944", + "title": "Amen: The Diary of Rabbi Martin Siegel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ziegler, Mel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ziegler, Mel", + "fl": "Mel Ziegler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00005VCTS", + "publication": "A Maddick Manuscripts Book (1971), 276 pages", + "date": "1971", + "summary": "Amen: The Diary of Rabbi Martin Siegel by Mel Ziegler (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM755.S528 A3" + }, + "source": "amazon.com books", + "workcode": "3198313", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "276 p.", + "weight": "1 pound", + "pages": "276 " +}, +"271644946": { + "books_id": "271644946", + "title": "Jewish Wisdom (AUTHOR SIGNED FIRST EDITION)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Telushkin, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Telushkin, Joseph", + "fl": "Joseph Telushkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688129587", + "isbn": { + "0": "0688129587", + "2": "9780688129583" + }, + "asin": "0688129587", + "ean": ["0688129587"], + "publication": "William Morrow (1994), Edition: First Edition, 688 pages", + "date": "1994", + "summary": "Jewish Wisdom (AUTHOR SIGNED FIRST EDITION) by Joseph Telushkin (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .T45" + }, + "subject": { + "0": ["Jewish ethics"], + "2": ["Jews", + "Quotations"], + "4": ["Judaism", + "Essence, genius, nature"], + "6": ["Judaism", + "Quotations, Maxims, etc"], + "8": ["Judaism", + "Quotations, maxims, etc"] + }, + "source": "amazon.com books", + "workcode": "222013", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "688 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.97 inches", + "length": "6.12 inches", + "dimensions": "9.25 x 6.12 x 1.97 inches", + "weight": "2.50004205108 pounds", + "pages": "688 " +}, +"271644955": { + "books_id": "271644955", + "title": "Vatican Diplomacy and the Jews During the Holocaust, 1939-1943", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Morley, John F.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Morley, John F.", + "fl": "John F. Morley", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0870687018", + "isbn": { + "0": "0870687018", + "2": "9780870687013" + }, + "asin": "0870687018", + "ean": ["0870687018"], + "publication": "Ktav Pub & Distributors Inc (1980), Edition: First Edition, 327 pages", + "date": "1980", + "summary": "Vatican Diplomacy and the Jews During the Holocaust, 1939-1943 by John F. Morley (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["943.086"], + "wording": ["Germany 1866-", + "Germany and neighboring central European countries", + "Historical periods of Germany", + "History & geography", + "History of Europe", + "Third Reich 1933-1945"] + }, + "lcc": { + "code": "D810.J4 M588" + }, + "source": "amazon.com books", + "workcode": "2283184", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "327 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "9.25 x 6.5 x 1.25 inches", + "weight": "1.4109584768 pounds", + "pages": "327 " +}, +"271644964": { + "books_id": "271644964", + "title": "The Arabs in Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Jiryis, Sabri", + "primaryauthorrole": "Author", + "secondaryauthor": "Bushnaq, Inea", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Jiryis, Sabri", + "fl": "Sabri Jiryis", + "role": "Author" + }, + { + "lf": "Bushnaq, Inea", + "fl": "Inea Bushnaq", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0853453772", + "isbn": { + "0": "0853453772", + "2": "9780853453772" + }, + "asin": "0853453772", + "ean": ["0853453772"], + "publication": "Monthly Review Press (1976), Edition: First Edition, 314 pages", + "date": "1976", + "summary": "The Arabs in Israel by Sabri Jiryis (1976)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Arabic"], + "originallanguage_codeA": ["eng", + "ara"], + "ddc": { + "code": ["323.4"], + "wording": ["Civil and political rights", + "Political science", + "Social sciences", + "The state and the individual"] + }, + "lcc": { + "code": "DS113.7 .J813" + }, + "source": "amazon.com books", + "workcode": "2933274", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271644971": { + "books_id": "271644971", + "title": "The new anti-Semitism,", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Forster, Arnold; Epstein, Benjamin R.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Forster, Arnold; Epstein, Benjamin R.", + "fl": "Arnold; Epstein Forster, Benjamin R.", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0070216150", + "isbn": { + "0": "0070216150", + "2": "9780070216150" + }, + "asin": "0070216150", + "ean": ["0070216150"], + "publication": "McGraw - Hill Book Company (1974), Edition: First Edition, 354 pages", + "date": "1974", + "summary": "The new anti-Semitism, by Arnold; Epstein Forster, Benjamin R. (1974)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS146.U6 F67" + }, + "subject": [["Antisemitism"]], + "source": "amazon.com books", + "workcode": "1103970", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "354 p.", + "weight": "3.6 pounds", + "pages": "354 " +}, +"271644988": { + "books_id": "271644988", + "title": "The Woman Who Defied Kings: The Life and Times of Dona Gracia Nasi", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Brooks, Andree Aelion", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Brooks, Andree Aelion", + "fl": "Andree Aelion Brooks", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1557788294", + "isbn": { + "0": "1557788294", + "2": "9781557788290" + }, + "asin": "1557788294", + "ean": ["1557788294"], + "publication": "Paragon House (2002), Edition: Reprint, 614 pages", + "date": "2002", + "summary": "The Woman Who Defied Kings: The Life and Times of Dona Gracia Nasi by Andree Aelion Brooks (2002)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS135.M43 N372" + }, + "subject": [["Jewish women", + "Mediterranean Region", + "Biography"], + ["Jews", + "Mediterranean Region", + "Biography"], + ["Jews in public life", + "Mediterranean Region", + "Biography"], + ["Marranos", + "Mediterranean Region", + "Biography"], + ["Sephardim", + "Mediterranean Region", + "Biography"], + ["Women bankers", + "Mediterranean Region", + "Biography"]], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "378620", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "614 p.; 9.06 inches", + "height": "9.06 inches", + "thickness": "1.58 inches", + "length": "6.02 inches", + "dimensions": "9.06 x 6.02 x 1.58 inches", + "weight": "1.9 pounds", + "pages": "614 " +}, +"271645008": { + "books_id": "271645008", + "title": "Twelve Jewish Steps to Recovery (2nd Edition): A Personal Guide to Turning From Alcoholism and Other Addictions\u2015Drugs, Food, Gambling, Sex... (The Jewsih Lights Twelve Steps Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Copans, Dr. Stuart A.", + "primaryauthorrole": "Author", + "secondaryauthor": "Olitzky, Rabbi Kerry M.|Zimmerman, Rabbi Sheldon|Grünberg, Maty|Twerski MD, Rabbi Abraham J.", + "secondaryauthorroles": "Author|Introduction|Illustrator|Preface", + "authors": [{ + "lf": "Copans, Dr. Stuart A.", + "fl": "Dr. Stuart A. Copans", + "role": "Author" + }, + { + "lf": "Olitzky, Rabbi Kerry M.", + "fl": "Rabbi Kerry M. Olitzky", + "role": "Author" + }, + { + "lf": "Zimmerman, Rabbi Sheldon", + "fl": "Rabbi Sheldon Zimmerman", + "role": "Introduction" + }, + { + "lf": "Grünberg, Maty", + "fl": "Maty Grünberg", + "role": "Illustrator" + }, + { + "lf": "Twerski MD, Rabbi Abraham J.", + "fl": "Rabbi Abraham J. Twerski MD", + "role": "Preface" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1580234097", + "isbn": { + "0": "1580234097", + "2": "9781580234092" + }, + "asin": "1580234097", + "ean": ["1580234097"], + "publication": "Jewish Lights (2009), Edition: 2, 160 pages", + "date": "2009", + "summary": "Twelve Jewish Steps to Recovery (2nd Edition): A Personal Guide to Turning From Alcoholism and Other Addictions\u2015Drugs, Food, Gambling, Sex... (The Jewsih Lights Twelve Steps Series) by Dr. Stuart A. Copans (2009)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["362.29"], + "wording": ["Mentally ill", + "Social problems and social services", + "Social problems of and services to groups of people", + "Social sciences", + "Substance abuse"] + }, + "lcc": { + "code": "HV5185 .O45" + }, + "subject": [["Alcoholics", + "Rehabilitation"], + ["Alcoholism", + "Religious aspects", + "Judaism"], + ["Jews", + "Alcohol use"], + ["Twelve-step programs", + "Religious aspects", + "Judaism"]], + "source": "amazon.com books", + "workcode": "2404174", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "160 p.; 9 inches", + "height": "9 inches", + "thickness": "0.40157480274 inches", + "length": "5.99999999388 inches", + "dimensions": "9 x 5.99999999388 x 0.40157480274 inches", + "weight": "0.52029093832 pounds", + "pages": "160 " +}, +"271645011": { + "books_id": "271645011", + "title": "Hanged at Auschwitz", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kessel, Sim; Wallace, Melville; Wallace, Delight (Translators).", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kessel, Sim; Wallace, Melville; Wallace, Delight (Translators).", + "fl": "Sim; Wallace Kessel, Melville; Wallace, Delight (Translators).", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0812814975", + "isbn": { + "0": "0812814975", + "2": "9780812814972" + }, + "asin": "0812814975", + "ean": ["0812814975"], + "publication": "Stein and Day, New York (1972), Edition: First Edition, 192 pages", + "date": "1972", + "summary": "Hanged at Auschwitz by Sim; Wallace Kessel, Melville; Wallace, Delight (Translators). (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["French"], + "originallanguage_codeA": ["eng", + "fre"], + "ddc": { + "code": ["940.54"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "Military history of World War II"] + }, + "lcc": { + "code": "D805.P7 K4513" + }, + "subject": [["Auschwitz (Concentration camp)"], + ["Kessel, Sim"], + ["World War, 1939-1945", + "Personal narratives, French"]], + "originaltitle": "Perdu \u00e0 Auschwitz", + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "1229955", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.", + "weight": "3 pounds", + "pages": "192 " +}, +"271645016": { + "books_id": "271645016", + "title": "First century Judaism in crisis;: Yohanan ben Zakkai and the renaissance of Torah", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Neusner, Jacob", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Neusner, Jacob", + "fl": "Jacob Neusner", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0687131200", + "isbn": { + "0": "0687131200", + "2": "9780687131204" + }, + "asin": "0687131200", + "ean": ["0687131200"], + "publication": "Abingdon Press (1975), 203 pages", + "date": "1975", + "summary": "First century Judaism in crisis;: Yohanan ben Zakkai and the renaissance of Torah by Jacob Neusner (1975)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.8"], + "wording": ["Jewish sects", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM755.J7 N42" + }, + "subject": [["Judaism", + "History"], + ["Tannaim", + "Biography"]], + "source": "amazon.com books", + "workcode": "2292839", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "203 p.", + "weight": "0.65 pounds", + "pages": "203 " +}, +"271645018": { + "books_id": "271645018", + "title": "Chagall: Burning Lights - A Unique Double Portrait of the Warm World of Russian Jewry", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Chagall, Bella", + "primaryauthorrole": "Author", + "secondaryauthor": "Chagall, Marc", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Chagall, Bella", + "fl": "Bella Chagall", + "role": "Author" + }, + { + "lf": "Chagall, Marc", + "fl": "Marc Chagall", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001290WZ6", + "publication": "Schocken Books (1962), Edition: 1st, 168 pages", + "date": "1962", + "summary": "Chagall: Burning Lights - A Unique Double Portrait of the Warm World of Russian Jewry by Bella Chagall (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Yiddish"], + "originallanguage_codeA": ["eng", + "yid"], + "ddc": { + "code": ["947.656004924"], + "wording": ["History & geography", + "History of Europe", + "Moldova, Transnistria", + "Russia and neighboring east European countries", + "[Belarus now 947.8]"] + }, + "lcc": { + "code": "DS135.R95 C4713" + }, + "subject": [["Chagall, Bella, 1895-1944"], + ["Jews", + "Belarus", + "Vitsebsk", + "Biography"], + ["Jews", + "Belarus", + "Vitsebsk", + "Social life and customs"], + ["Jews", + "Vitsebsk", + "Biography"], + ["Jews", + "Vitsebsk", + "Social life and customs"], + ["Vitsebsk (Belarus)", + "Biography"]], + "source": "amazon.com books", + "workcode": "377181", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "168 p.", + "weight": "0.000625 pounds", + "pages": "168 " +}, +"271645035": { + "books_id": "271645035", + "title": "Why England Slept by John F. Kennedy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kennedy, John F", + "primaryauthorrole": "Author", + "secondaryauthor": "Sloan, Sam|Luce, Henry R", + "secondaryauthorroles": "Introduction|Foreword", + "authors": [{ + "lf": "Kennedy, John F", + "fl": "John F Kennedy", + "role": "Author" + }, + { + "lf": "Sloan, Sam", + "fl": "Sam Sloan", + "role": "Introduction" + }, + { + "lf": "Luce, Henry R", + "fl": "Henry R Luce", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "4871877671", + "isbn": { + "0": "4871877671", + "2": "9784871877671" + }, + "asin": "4871877671", + "ean": ["4871877671"], + "publication": "Ishi Press (2016), 284 pages", + "date": "2016", + "summary": "Why England Slept by John F. Kennedy by John F Kennedy (2016)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["941.083"], + "wording": ["1837- Period of Victoria and House of Windsor", + "1910-1936 George V", + "British Isles", + "Historical periods of British Isles", + "History & geography", + "History of Europe"] + }, + "lcc": { + "code": "DA578 .K4" + }, + "subject": { + "0": ["Disarmament"], + "2": ["Great Britain", + "Politics and government", + "1910-1936"], + "4": ["Great Britain", + "Politics and government", + "1936-1945"], + "6": ["disarmament"] + }, + "source": "amazon.com books", + "workcode": "810502", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "284 p.; 9 inches", + "height": "9 inches", + "thickness": "0.64 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.64 inches", + "weight": "0.85098433132 pounds", + "pages": "284 " +}, +"271645056": { + "books_id": "271645056", + "title": "A time to pray;: A personal approach to the Jewish prayer book", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Goldstein, Rose B", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldstein, Rose B", + "fl": "Rose B Goldstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006C510G", + "publication": "National Women's League of the United Synagogue of America (1972), Edition: First Edition, 239 pages", + "date": "1972", + "summary": "A time to pray;: A personal approach to the Jewish prayer book by Rose B Goldstein (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM675.D3" + }, + "source": "amazon.com books", + "workcode": "19687443", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "239 p.", + "weight": "0.95 pounds", + "pages": "239 " +}, +"271645089": { + "books_id": "271645089", + "title": "Jews to remember;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ish-Kishor, Sulamith", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ish-Kishor, Sulamith", + "fl": "Sulamith Ish-Kishor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006AP75C", + "publication": "Hebrew Pub. Co (1941), Edition: 1st, 127 pages", + "date": "1941", + "summary": "Jews to remember; by Sulamith Ish-Kishor (1941)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["920.0092924"], + "wording": ["Biography & genealogy", + "Biography, genealogy, insignia", + "General and collective by localities", + "History & geography"] + }, + "lcc": { + "code": "DS115.I8" + }, + "source": "amazon.com books", + "workcode": "9672005", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645108": { + "books_id": "271645108", + "title": "The Family Treasury of Jewish Holidays", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Drucker, Malka", + "primaryauthorrole": "Author", + "secondaryauthor": "Patz, Nancy", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Drucker, Malka", + "fl": "Malka Drucker", + "role": "Author" + }, + { + "lf": "Patz, Nancy", + "fl": "Nancy Patz", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9780316193436", + "isbn": ["9780316193436", + "0316193437"], + "asin": "0316193437", + "ean": ["0316193437"], + "publication": "Little, Brown (1994), Edition: 7th Print, 192 pages", + "date": "1994", + "summary": "The Family Treasury of Jewish Holidays by Malka Drucker (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690 .D77" + }, + "subject": { + "0": ["Fasts and feasts", + "Judaism"], + "2": ["Fasts and feasts", + "Judaism", + "Juvenile literature"], + "3": ["Fasts and feasts", + "Juvenile literature"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "Customs and practices", + "Juvenile literature"], + "7": ["Judaism", + "Juvenile literature"] + }, + "awards": ["BCCB Blue Ribbon Book", + "Sydney Taylor Book Award"], + "genre": ["Nonfiction"], + "genre_id": ["20275895"], + "source": "amazon.com books", + "workcode": "345543", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "192 p.; 11.5 inches", + "height": "11.5 inches", + "thickness": "0.75 inches", + "length": "9 inches", + "dimensions": "11.5 x 9 x 0.75 inches", + "weight": "2.3 pounds", + "pages": "192 " +}, +"271645128": { + "books_id": "271645128", + "title": "Time Capsule: History of the War Years 1939-1945", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Luce, Henry R. (Editor)", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Luce, Henry R. (Editor)", + "fl": "Henry R. (Editor) Luce", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000N643T0", + "publication": "Bonanza Books (1972), 1664 pages", + "date": "1972", + "summary": "Time Capsule: History of the War Years 1939-1945 by Henry R. (Editor) Luce (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876855", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "1664 p.", + "weight": "1.25 pounds", + "pages": "1664 " +}, +"271645132": { + "books_id": "271645132", + "title": "J. Robert Oppenheimer and the Atomic Story", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Kugelmass, Alvin", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kugelmass, Alvin", + "fl": "Alvin Kugelmass", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000JPKLEG", + "publication": "Julian Messner (1966), Edition: 7th Printing", + "date": "1966", + "summary": "J. Robert Oppenheimer and the Atomic Story by Alvin Kugelmass (1966)", + "language": ["Chinese"], + "language_codeA": ["chi"], + "originallanguage_codeA": ["chi"], + "lcc": { + "code": "QC16.O62" + }, + "source": "amazon.com books", + "workcode": "32876857", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1 pound" +}, +"271645157": { + "books_id": "271645157", + "title": "Joy and remembrance: Commentary on the Sabbath eve liturgy", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Arzt, Max", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Arzt, Max", + "fl": "Max Arzt", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876771479", + "isbn": { + "0": "0876771479", + "2": "9780876771471" + }, + "asin": "0876771479", + "ean": ["0876771479"], + "publication": "Hartmore House (1979), 153 pages", + "date": "1979", + "summary": "Joy and remembrance: Commentary on the Sabbath eve liturgy by Max Arzt (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM675.S35 Z72" + }, + "source": "amazon.com books", + "workcode": "3888533", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645180": { + "books_id": "271645180", + "title": "The Chosen", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Potok, Chaim", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Potok, Chaim", + "fl": "Chaim Potok", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1501142461", + "isbn": { + "0": "1501142461", + "2": "9781501142468" + }, + "asin": "1501142461", + "ean": ["1501142461"], + "publication": "Simon & Schuster (2022), Edition: Reissue, 272 pages", + "date": "2022", + "summary": "The Chosen by Chaim Potok (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3566.O69 C54" + }, + "subject": { + "0": ["Bildungsromans"], + "2": ["Brooklyn (New York, N.Y.)", + "Fiction"], + "4": ["Brooklyn (New York, N.Y.)", + "In literature"], + "5": ["Domestic Fiction"], + "6": ["Domestic fiction"], + "8": ["Fathers and sons", + "Fiction"], + "10": ["Fathers and sons in literature"], + "11": ["Jewish families", + "Fiction"], + "13": ["Jewish fiction"], + "15": ["Jews", + "New York (State)", + "Fiction"], + "17": ["Jews in literature"], + "18": ["Large Type Books"], + "19": ["Large type books"], + "20": ["Male friendship", + "Fiction"], + "22": ["Potok, Chaim. Chosen"], + "23": ["Teenage boys", + "Fiction"], + "25": ["Teenage boys in literature"] + }, + "series": ["The Chosen"], + "originaltitle": "The Chosen", + "awards": ["ALA Outstanding Books for the College Bound", + "ALA Popular Paperbacks for Young Adults", + "Best Fiction for Young Adults", + "Bookriot's 100 New York City Novels", + "Books To Read Aloud with Children Twelve & Over", + "Christianity Today's Books of the Century", + "Edward Lewis Wallant Award", + "Eliot Rosewater Indiana High School Book Award", + "National Book Award", + "New York Times bestseller", + "Notable Books List", + "Publishers Weekly Bestseller", + "Top 10 books about freedom", + "Torchlight List"], + "genre": ["Fiction", + "General Fiction", + "Young Adult"], + "genre_id": ["17160326", + "2", + "1879"], + "source": "amazon.com books", + "workcode": "5964", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 8.38 inches", + "height": "8.375 inches", + "thickness": "0.7 inches", + "length": "5.5 inches", + "dimensions": "8.375 x 5.5 x 0.7 inches", + "weight": "2.314853751 pounds", + "pages": "272 " +}, +"271645187": { + "books_id": "271645187", + "title": "Judaism and human rights (The B'nai B'rith Jewish heritage classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Konvitz, Milton Ridvas", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Konvitz, Milton Ridvas", + "fl": "Milton Ridvas Konvitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393043576", + "isbn": { + "0": "0393043576", + "2": "9780393043570" + }, + "asin": "0393043576", + "ean": ["0393043576"], + "publication": "W. W. Norton (1972), 315 pages", + "date": "1972", + "summary": "Judaism and human rights (The B'nai B'rith Jewish heritage classics) by Milton Ridvas Konvitz (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM40 .K62" + }, + "subject": [["Civil rights (Jewish law)"], + ["Judaism"], + ["judaism"]], + "source": "amazon.com books", + "workcode": "2600292", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "315 p.", + "weight": "1.2 pounds", + "pages": "315 " +}, +"271645196": { + "books_id": "271645196", + "title": "Upon the Doorsteps of Thy House: Jewish Life in East-Central Europe, Yesterday and Today by Ruth Ellen Gruber (30-Aug-1994) Hardcover", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Gruber, Ruth Ellen", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gruber, Ruth Ellen", + "fl": "Ruth Ellen Gruber", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B013J8ZMAW", + "publication": "John Wiley & Sons; First Edition edition (30 Aug. 1994)", + "summary": "Upon the Doorsteps of Thy House: Jewish Life in East-Central Europe, Yesterday and Today by Ruth Ellen Gruber (30-Aug-1994) Hardcover by Ruth Ellen Gruber", + "lcc": [], + "source": "amazon.com books", + "workcode": "32876866", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645199": { + "books_id": "271645199", + "title": "The Animated Haggadah (English and Hebrew Edition)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Oren, Rony", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Oren, Rony", + "fl": "Rony Oren", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "9655241181", + "isbn": { + "0": "9655241181", + "2": "9789655241181" + }, + "asin": "9655241181", + "ean": ["9655241181"], + "publication": "Lambda Pub Inc (2012), Edition: New, Reprint, Teachers Guide, Bilingual, 48 pages", + "date": "2012", + "summary": "The Animated Haggadah (English and Hebrew Edition) by Rony Oren (2012)", + "language": ["Hebrew", + "Abkhaz"], + "language_codeA": ["heb", + "abk"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb", + "abk"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM695.P3" + }, + "source": "amazon.com books", + "workcode": "2080310", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "48 p.; 10.75 inches", + "height": "10.75 inches", + "thickness": "0.25 inches", + "length": "8.5 inches", + "dimensions": "10.75 x 8.5 x 0.25 inches", + "weight": "1.00089866948 pounds", + "pages": "48 " +}, +"271645219": { + "books_id": "271645219", + "title": "The Hanukkah Anthology (The JPS Holiday Anthologies)", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goodman, Rabbi Philip", + "primaryauthorrole": "Editor", + "authors": [{ + "lf": "Goodman, Rabbi Philip", + "fl": "Rabbi Philip Goodman", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827613180", + "isbn": { + "0": "0827613180", + "2": "9780827613188" + }, + "asin": "0827613180", + "ean": ["0827613180"], + "publication": "JEWISH PUBLICATON SOCIETY (2018), Edition: Illustrated, 504 pages", + "date": "2018", + "summary": "The Hanukkah Anthology (The JPS Holiday Anthologies) by Rabbi Philip Goodman (2018)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.H3 H37" + }, + "subject": { + "0": ["Hanukkah"], + "2": ["Hanukkah", + "Literary collections"] + }, + "series": ["JPS Holiday Anthologies"], + "genre": ["Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1944"], + "source": "amazon.com books", + "workcode": "3137605", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "504 p.; 9 inches", + "height": "9 inches", + "thickness": "1.13 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 1.13 inches", + "weight": "1.67992243644 pounds", + "pages": "504 " +}, +"271645229": { + "books_id": "271645229", + "title": "This Is My God", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wouk, Herman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wouk, Herman", + "fl": "Herman Wouk", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0316955140", + "isbn": { + "0": "0316955140", + "2": "9780316955140" + }, + "asin": "0316955140", + "ean": ["0316955140"], + "publication": "Back Bay Books (1992), Edition: Reprint, 345 pages", + "date": "1992", + "summary": "This Is My God by Herman Wouk (1992)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM561.W65" + }, + "subject": { + "0": ["Judaism"], + "2": ["Large type books"], + "3": ["judaism"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "29539", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "345 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.92 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 0.92 inches", + "weight": "0.73 pounds", + "pages": "345 " +},"271645236": { + "books_id": "271645236", + "title": "The Magic Carpet", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Barer, Shlomo", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Barer, Shlomo", + "fl": "Shlomo Barer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0000CIE15", + "publication": "Harper & Brothers (US)/Secker & Warburg (UK) (1952), Edition: First Edition, 267 pages", + "date": "1952", + "summary": "The Magic Carpet by Shlomo Barer (1952)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["325.253"], + "wording": ["Asian Emigration", + "Emigration and Refugees ", + "International migration and colonization", + "Political science", + "Social sciences"] + }, + "lcc": { + "code": "DS135.Y4 B3" + }, + "subject": { + "0": ["Jews", + "Yemen"], + "2": ["Palestine", + "Emigration and immigration"] + }, + "source": "amazon.com books", + "workcode": "3779907", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "267 p.", + "weight": "0.000625 pounds", + "pages": "267 " +}, +"271645257": { + "books_id": "271645257", + "title": "Eulogies", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Wallack, Morton A.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wallack, Morton A.", + "fl": "Morton A. Wallack", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000GWF8H2", + "publication": "Jonathan David (1965), Edition: First Edition", + "date": "1965", + "summary": "Eulogies by Morton A. Wallack (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BM744.3" + }, + "source": "amazon.com books", + "workcode": "5431866", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.85 pounds" +}, +"271645265": { + "books_id": "271645265", + "title": "To Be a Jew: A Guide to Jewish Observance in Contemporary Life", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Donin, Hayim H.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Donin, Hayim H.", + "fl": "Hayim H. Donin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1541674022", + "isbn": { + "0": "1541674022", + "2": "9781541674028" + }, + "asin": "1541674022", + "ean": ["1541674022"], + "publication": "Basic Books (2019), Edition: Illustrated, 464 pages", + "date": "2019", + "summary": "To Be a Jew: A Guide to Jewish Observance in Contemporary Life by Hayim H. Donin (2019)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM700.D58" + }, + "subject": { + "0": ["Jewish way of life"], + "2": ["Judaism", + "Customs and practices"] + }, + "source": "amazon.com books", + "workcode": "109772", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "464 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1.35 inches", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1.35 inches", + "weight": "0.87964442538 pounds", + "pages": "464 " +}, +"271645267": { + "books_id": "271645267", + "title": "Unorthodox: The Scandalous Rejection of My Hasidic Roots", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feldman, Deborah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feldman, Deborah", + "fl": "Deborah Feldman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1982148209", + "isbn": { + "0": "1982148209", + "2": "9781982148201" + }, + "asin": "1982148209", + "ean": ["0001982148209"], + "upc": ["001982148209"], + "publication": "Simon & Schuster (2020), Edition: Media Tie-In, 272 pages", + "date": "2020", + "summary": "Unorthodox: The Scandalous Rejection of My Hasidic Roots by Deborah Feldman (2020)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["974.7"], + "wording": ["History & geography", + "History of North America", + "New York", + "Northeastern United States (New England and Middle Atlantic states)"] + }, + "lcc": { + "code": "F128.J5 F525" + }, + "originaltitle": "Unorthodox: The Scandalous Rejection of My Hasidic Roots", + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1240", + "1247", + "1944"], + "source": "amazon.com books", + "workcode": "11854784", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "272 p.; 8.38 inches", + "height": "8.375 inches", + "thickness": "0.6 inches", + "length": "5.5 inches", + "dimensions": "8.375 x 5.5 x 0.6 inches", + "weight": "2.314853751 pounds", + "pages": "272 " +}, +"271645305": { + "books_id": "271645305", + "title": "Open the Gates!", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Avriel, Ehud", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Avriel, Ehud", + "fl": "Ehud Avriel", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1501176706", + "isbn": { + "0": "1501176706", + "2": "9781501176708" + }, + "asin": "1501176706", + "ean": ["1501176706"], + "publication": "Scribner (2017), 384 pages", + "date": "2017", + "summary": "Open the Gates! by Ehud Avriel (2017)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "JV8749.P3" + }, + "source": "amazon.com books", + "workcode": "13357649", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.96 inches", + "length": "5.25 inches", + "dimensions": "8.25 x 5.25 x 0.96 inches", + "weight": "0.65 pounds", + "pages": "384 " +}, +"271645307": { + "books_id": "271645307", + "title": "The Tapestry of Jewish Time: A Spiritual Guide to Holidays and Life-Cycle Events", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Cardin, Nina Beth", + "primaryauthorrole": "Author", + "secondaryauthor": "Winn-Lederer, Ilene", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Cardin, Nina Beth", + "fl": "Nina Beth Cardin", + "role": "Author" + }, + { + "lf": "Winn-Lederer, Ilene", + "fl": "Ilene Winn-Lederer", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0874416450", + "isbn": { + "0": "0874416450", + "2": "9780874416459" + }, + "asin": "0874416450", + "ean": ["0874416450"], + "publication": "Behrman House (2000), Edition: First Edition, 307 pages", + "date": "2000", + "summary": "The Tapestry of Jewish Time: A Spiritual Guide to Holidays and Life-Cycle Events by Nina Beth Cardin (2000)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM690 .C36" + }, + "subject": [["Fasts and feasts", + "Judaism"], + ["Life cycle, Human", + "Religious aspects", + "Judaism"], + ["Spiritual life", + "Judaism"]], + "source": "amazon.com books", + "workcode": "393626", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.; 10 inches", + "height": "10 inches", + "thickness": "1.25 inches", + "length": "7.25 inches", + "dimensions": "10 x 7.25 x 1.25 inches", + "weight": "1.56 pounds", + "pages": "307 " +}, +"271645321": { + "books_id": "271645321", + "title": "Foundations of a faith", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Greenberg, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Simon", + "fl": "Simon Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DWR6A", + "publication": "Burning Bush Press (1967), 340 pages", + "date": "1967", + "summary": "Foundations of a faith by Simon Greenberg (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM45.G73" + }, + "source": "amazon.com books", + "workcode": "9905042", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645329": { + "books_id": "271645329", + "title": "When Your Child Asks: A Handbook for Jewish Parents", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glustrom, Simon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glustrom, Simon", + "fl": "Simon Glustrom", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819705713", + "isbn": { + "0": "0819705713", + "2": "9780819705716" + }, + "asin": "0819705713", + "ean": ["0819705713"], + "publication": "Bloch Pub Co (1997), Edition: 1 ED, 166 pages", + "date": "1997", + "summary": "When Your Child Asks: A Handbook for Jewish Parents by Simon Glustrom (1997)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.076"], + "wording": ["Education And Research", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM570.G55" + }, + "source": "amazon.com books", + "workcode": "7736070", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "166 p.; 8 inches", + "height": "8 inches", + "thickness": "0.5 inches", + "length": "5.5 inches", + "dimensions": "8 x 5.5 x 0.5 inches", + "weight": "0.54 pounds", + "pages": "166 " +}, +"271645354": { + "books_id": "271645354", + "title": "The King's Persons", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Greenberg, Joanne", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Greenberg, Joanne", + "fl": "Joanne Greenberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0030056233", + "isbn": { + "0": "0030056233", + "2": "9780030056239" + }, + "asin": "0030056233", + "ean": ["0030056233"], + "publication": "Henry Holt & Co (1985), 284 pages", + "date": "1985", + "summary": "The King's Persons by Joanne Greenberg (1985)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3557.R3784 K5" + }, + "subject": { + "0": ["Great Britain", + "Fiction.", + "Angevin period, 1154-1216"], + "1": ["Great Britain", + "History", + "Angevin period, 1154-1216", + "Fiction"], + "2": ["Historical Fiction"], + "4": ["Historical fiction"], + "6": ["Jews", + "England", + "Fiction"], + "8": ["Massacres", + "Fiction"], + "10": ["York (England)", + "Fiction"], + "12": ["historical fiction"] + }, + "originaltitle": "The King's Persons", + "awards": ["National Jewish Book Award"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "2138902", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "284 p.", + "weight": "0.75 pounds", + "pages": "284 " +}, +"271645378": { + "books_id": "271645378", + "title": "Voice of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eban, Abba", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eban, Abba", + "fl": "Abba Eban", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006D6RXK", + "publication": "Horizon Press (1957), 304 pages", + "date": "1957", + "summary": "Voice of Israel by Abba Eban (1957)", + "language": ["English", + "Undetermined"], + "language_codeA": ["eng", + "und"], + "originallanguage_codeA": ["eng", + "und"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS102.E2" + }, + "subject": { + "0": ["Israel", + "Foreign relations"], + "2": ["Israel", + "Foreign relations", + "Addresses, essays, lectures"], + "3": ["Jews", + "History"] + }, + "source": "amazon.com books", + "workcode": "239889", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "304 p.", + "weight": "1.05 pounds", + "pages": "304 " +}, +"271645382": { + "books_id": "271645382", + "title": "Jewish Literacy: The Most Important Things to Know About the Jewish Religion, Its People and Its History", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Telushkin, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Telushkin, Joseph", + "fl": "Joseph Telushkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688085067", + "isbn": { + "0": "0688085067", + "2": "9780688085063" + }, + "asin": "0688085067", + "ean": ["0688085067"], + "publication": "William Morrow (1991), Edition: 1, 784 pages", + "date": "1991", + "summary": "Jewish Literacy: The Most Important Things to Know About the Jewish Religion, Its People and Its History by Joseph Telushkin (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM155 .T44" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"], + "4": ["Judaism", + "Customs and practices"], + "6": ["Judaism", + "History"], + "8": ["Judaism", + "history"] + }, + "source": "amazon.com books", + "workcode": "86247", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "784 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "2 inches", + "length": "6.75 inches", + "dimensions": "9.75 x 6.75 x 2 inches", + "weight": "2.55 pounds", + "pages": "784 " +}, +"271645407": { + "books_id": "271645407", + "title": "The Wonders of America: Reinventing Jewish Culture 1880-1950", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Joselit, Jenna Weissman", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Joselit, Jenna Weissman", + "fl": "Jenna Weissman Joselit", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0809027577", + "isbn": { + "0": "0809027577", + "2": "9780809027576" + }, + "asin": "0809027577", + "ean": ["0809027577"], + "publication": "Hill & Wang Pub (1994), Edition: First Edition, 349 pages", + "date": "1994", + "summary": "The Wonders of America: Reinventing Jewish Culture 1880-1950 by Jenna Weissman Joselit (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["306.4"], + "wording": ["Culture and institutions", + "Social sciences", + "Social sciences, sociology & anthropology", + "Specific aspects of culture"] + }, + "lcc": { + "code": "E184.J5 J837" + }, + "subject": { + "0": ["Jews", + "United States", + "Cultural assimilation"], + "1": ["Jews", + "United States", + "Material culture"], + "3": ["Jews", + "United States", + "Social life and customs"], + "5": ["Judaism", + "United States", + "Customs and practices"], + "6": ["United States", + "Social life and customs", + "20th century"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "1944"], + "source": "amazon.com books", + "workcode": "179285", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "349 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.25 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 1.25 inches", + "weight": "1.55 pounds", + "pages": "349 " +}, +"271645411": { + "books_id": "271645411", + "title": "Jewish Wisdom (AUTHOR SIGNED FIRST EDITION)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Telushkin, Joseph", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Telushkin, Joseph", + "fl": "Joseph Telushkin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0688129587", + "isbn": { + "0": "0688129587", + "2": "9780688129583" + }, + "asin": "0688129587", + "ean": ["0688129587"], + "publication": "William Morrow (1994), Edition: First Edition, 688 pages", + "date": "1994", + "summary": "Jewish Wisdom (AUTHOR SIGNED FIRST EDITION) by Joseph Telushkin (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.3"], + "wording": ["Jewish philosophy", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM565 .T45" + }, + "subject": { + "0": ["Jewish ethics"], + "2": ["Jews", + "Quotations"], + "4": ["Judaism", + "Essence, genius, nature"], + "6": ["Judaism", + "Quotations, Maxims, etc"], + "8": ["Judaism", + "Quotations, maxims, etc"] + }, + "source": "amazon.com books", + "workcode": "222013", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "688 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1.97 inches", + "length": "6.12 inches", + "dimensions": "9.25 x 6.12 x 1.97 inches", + "weight": "2.50004205108 pounds", + "pages": "688 " +}, +"271645448": { + "books_id": "271645448", + "title": "Trotsky and the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Nedava, Jospeh", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Nedava, Jospeh", + "fl": "Jospeh Nedava", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394486722", + "isbn": { + "0": "0394486722", + "2": "9780394486727" + }, + "asin": "0394486722", + "ean": ["0394486722"], + "publication": "Philadelphia: Jewish Publication Society of America (1972), Edition: First Edition", + "date": "1972", + "summary": "Trotsky and the Jews by Jospeh Nedava (1972)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.084"], + "wording": ["1855-", + "1917-1953 ; Communist period", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DK254.T6 N4" + }, + "subject": [["Jews", + "Soviet Union"]], + "source": "amazon.com books", + "workcode": "1959274", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.2 pounds" +}, +"271645494": { + "books_id": "271645494", + "title": "In Those Days", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Steinberg, Jehudah", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Steinberg, Jehudah", + "fl": "Jehudah Steinberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1419126199", + "isbn": { + "0": "1419126199", + "2": "9781419126192" + }, + "asin": "1419126199", + "ean": ["1419126199"], + "publication": "Kessinger Publishing (2004), 84 pages", + "date": "2004", + "summary": "In Those Days by Jehudah Steinberg (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PJ5053.S85 B313" + }, + "source": "amazon.com all media", + "workcode": "9169944", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "84 p.; 9.22 inches", + "height": "9.22 inches", + "thickness": "0.24 inches", + "length": "7.56 inches", + "dimensions": "9.22 x 7.56 x 0.24 inches", + "weight": "0.35714886444 pounds", + "pages": "84 " +}, +"271645500": { + "books_id": "271645500", + "title": "The Lost Museum: The Nazi Conspiracy To Steal The World's Greatest Works Of Art", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Feliciano, Hector", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feliciano, Hector", + "fl": "Hector Feliciano", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0465041914", + "isbn": { + "0": "0465041914", + "2": "9780465041916" + }, + "asin": "0465041914", + "ean": ["0465041914"], + "publication": "Basic Books (1998), Edition: Reprint, 336 pages", + "date": "1998", + "summary": "The Lost Museum: The Nazi Conspiracy To Steal The World's Greatest Works Of Art by Hector Feliciano (1998)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["709.44"], + "wording": ["Arts", + "Arts & recreation", + "Europe", + "France & Monaco", + "History, geographic treatment, biography"] + }, + "lcc": { + "code": "N8795.F8 F4613" + }, + "subject": [["Art thefts", + "France", + "History", + "20th century"], + ["Germany", + "Cultural policy"], + ["Pillage", + "France"], + ["World War,", + "1939-1945", + "Art and the war"]], + "source": "amazon.com books", + "workcode": "208690", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "336 p.; 9 inches", + "height": "9 inches", + "thickness": "0.77 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.77 inches", + "weight": "0.89948602896 pounds", + "pages": "336 " +}, +"271645522": { + "books_id": "271645522", + "title": "Out of the Iron Furnace: The Jewish Redemption from Ancient Egypt and the Delivery from Spiritual Bondage", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-David, Rabb Eliezer", + "primaryauthorrole": "Author", + "secondaryauthor": "Feitman, Rabb Yaakov", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Ben-David, Rabb Eliezer", + "fl": "Rabb Eliezer Ben-David", + "role": "Author" + }, + { + "lf": "Feitman, Rabb Yaakov", + "fl": "Rabb Yaakov Feitman", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0BKC9ZVG5", + "ean": ["9798359728614"], + "publication": "Independently published (2022), 128 pages", + "date": "2022", + "summary": "Out of the Iron Furnace: The Jewish Redemption from Ancient Egypt and the Delivery from Spiritual Bondage by Rabb Eliezer Ben-David (2022)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "BS1245.5" + }, + "source": "amazon.com all media", + "workcode": "32876899", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "128 p.; 9 inches", + "height": "9 inches", + "thickness": "0.32 inches", + "length": "6 inches", + "dimensions": "9 x 6 x 0.32 inches", + "pages": "128 " +}, +"271645569": { + "books_id": "271645569", + "title": "The Jew of the Century", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Margolies, Morris B.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Margolies, Morris B.", + "fl": "Morris B. Margolies", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007G2KGY", + "publication": "Vile-Goller/Fine Arts (1965), Edition: First Edition", + "date": "1965", + "summary": "The Jew of the Century by Morris B. Margolies (1965)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.0922"], + "wording": ["Biography", + "Biography And History", + "Judaism", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "DS115.M24" + }, + "source": "amazon.com all media", + "workcode": "3162641", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645587": { + "books_id": "271645587", + "title": "History of the Jews in America", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pessin, Deborah", + "primaryauthorrole": "Author", + "secondaryauthor": "Gikow, Ruth", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Pessin, Deborah", + "fl": "Deborah Pessin", + "role": "Author" + }, + { + "lf": "Gikow, Ruth", + "fl": "Ruth Gikow", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00005XGK3", + "publication": "United Synagogue Commission on Jewish Education (1957), 317 pages", + "date": "1957", + "summary": "History of the Jews in America by Deborah Pessin (1957)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296"], + "wording": ["Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "E184.J5 P38" + }, + "subject": [["Jews", + "United States", + "History"]], + "source": "amazon.com books", + "workcode": "929344", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "317 p.", + "weight": "1.63 pounds", + "pages": "317 " +}, +"271645632": { + "books_id": "271645632", + "title": "Soldiers from the ghetto", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Cholawski, Shalom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Cholawski, Shalom", + "fl": "Shalom Cholawski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0498023826", + "isbn": { + "0": "0498023826", + "2": "9780498023828" + }, + "asin": "0498023826", + "ean": ["0498023826"], + "publication": "Tantivy Press (1980), Edition: First Edition, 182 pages", + "date": "1980", + "summary": "Soldiers from the ghetto by Shalom Cholawski (1980)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["940.53"], + "wording": ["1918-", + "History & geography", + "History of Europe", + "History of Europe", + "World War II, 1939-1945"] + }, + "lcc": { + "code": "DS135.R93 N453" + }, + "subject": [["Holocaust, Jewish (1939-1945)", + "Ni\ufe20a\ufe21sviz\ufe20h\ufe21", + "Personal narratives"], + ["Jews", + "Ni\ufe20a\ufe21sviz\ufe20h\ufe21.", + "Persecutions"], + ["Ni\ufe20a\ufe21sviz\ufe20h\ufe21 (Belarus)", + "Ethnic relations"], + ["World War, 1939-1945", + "Ni\ufe20a\ufe21sviz\ufe20h\ufe21.", + "Jewish resistance"]], + "source": "amazon.com books", + "workcode": "1059623", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "182 p.", + "weight": "1.05 pounds", + "pages": "182 " +}, +"271645636": { + "books_id": "271645636", + "title": "To Jerusalem and Back : a Personal Account / Saul Bellow", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bellow, Saul", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bellow, Saul", + "fl": "Saul Bellow", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001IPVRBM", + "publication": "Viking Press (1976), Edition: 3rd printing", + "date": "1976", + "summary": "To Jerusalem and Back : a Personal Account / Saul Bellow by Saul Bellow (1976)", + "language": ["German"], + "language_codeA": ["ger"], + "originallanguage": ["English"], + "originallanguage_codeA": ["ger", + "eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS107 .B37" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Arab-Israeli conflict", + "1973-1993"], + "3": ["Authors, American", + "20th century", + "Biography"], + "4": ["Authors, American", + "Biography"], + "5": ["Bellow, Saul", + "Travel", + "Israel"], + "6": ["Israel", + "Description and travel"], + "8": ["Jerusalem", + "Social life and customs"], + "9": ["Large Type Books"], + "10": ["Large type books"] + }, + "awards": ["New York Times bestseller", + "The New York Times Best Books of the Year"], + "genre": ["Nonfiction", + "Biography & Memoir", + "Travel"], + "genre_id": ["20275895", + "1240", + "3578"], + "source": "amazon.com all media", + "workcode": "29542", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "0.000625 pounds" +}, +"271645651": { + "books_id": "271645651", + "title": "The Jewish Problem in the Soviet Union: An Analysis and a Solution", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Goldberg, Ben Zion", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldberg, Ben Zion", + "fl": "Ben Zion Goldberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1399495127", + "isbn": { + "0": "1399495127", + "2": "9781399495127" + }, + "asin": "1399495127", + "ean": ["1399495127"], + "publication": "Crown Publishers (1961), Edition: First Edition, 374 pages", + "date": "1961", + "summary": "The Jewish Problem in the Soviet Union: An Analysis and a Solution by Ben Zion Goldberg (1961)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["947.004924"], + "wording": ["Ethnic minorities", + "History & geography", + "History of Europe", + "Jews", + "Russia", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS135.R9 G46" + }, + "subject": [["Jews", + "Soviet Union", + "History"]], + "source": "amazon.com all media", + "workcode": "4300305", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "374 p.", + "height": "8.3 inches", + "thickness": "1.4 inches", + "length": "5.7 inches", + "dimensions": "8.3 x 5.7 x 1.4 inches", + "weight": "1.4 pounds", + "pages": "374 " +}, +"271645672": { + "books_id": "271645672", + "title": "(First Printing) Shosha Hardcover By Isaac Bashevis Singer 1978 (Sosha)", + "sortcharacter": "2", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00DVOK70K", + "publication": "?Farrar Straus Giroux (1978)", + "date": "1978", + "summary": "(First Printing) Shosha Hardcover By Isaac Bashevis Singer 1978 (Sosha) by Isaac Bashevis Singer (1978)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.09"], + "wording": ["-", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish"] + }, + "lcc": { + "code": "PZ3.S61657 PJ5129 .S49" + }, + "subject": [["Historical Fiction"], + ["Historical fiction"], + ["Large Type Books"], + ["Large type books"], + ["Love Stories"], + ["Love stories"], + ["Warsaw (Poland)", + "Fiction"], + ["historical fiction"]], + "source": "amazon.com all media", + "workcode": "113709", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "1.05 pounds" +}, +"271645675": { + "books_id": "271645675", + "title": "The Wars of the Lord, Volume 1", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Gershom, Levi ben", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Gershom, Levi ben", + "fl": "Levi ben Gershom", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827602200", + "isbn": { + "0": "0827602200", + "2": "9780827602205" + }, + "asin": "0827602200", + "ean": ["0827602200"], + "publication": "JEWISH PUBLICATON SOCIETY (1987), Edition: First Edition, 268 pages", + "date": "1987", + "summary": "The Wars of the Lord, Volume 1 by Levi ben Gershom (1987)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["181.06"], + "wording": ["--", + "Ancient, medieval & eastern philosophy", + "Eastern philosophy", + "Judaism", + "Philosophy & psychology"] + }, + "lcc": { + "code": "B759.L43 M5413" + }, + "subject": [["Judaism", + "Doctrines", + "Early works to 1800"], + ["Philosophy, Jewish"], + ["Philosophy, Medieval"]], + "series": ["The Wars of the Lord"], + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "History", + "Philosophy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1599", + "66879", + "1944"], + "source": "amazon.com all media", + "workcode": "6444647", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "268 p.; 9.57 inches", + "height": "9.57 inches", + "thickness": "0.94 inches", + "length": "6.34 inches", + "dimensions": "9.57 x 6.34 x 0.94 inches", + "weight": "1.25002102554 pounds", + "pages": "268 " +}, +"271645681": { + "books_id": "271645681", + "title": "Sinai : The Great and Terrible Wilderness", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bernstein, Burton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bernstein, Burton", + "fl": "Burton Bernstein", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0670348376", + "isbn": { + "0": "0670348376", + "2": "9780670348374" + }, + "asin": "0670348376", + "ean": ["0670348376"], + "publication": "Viking Adult (1979), Edition: First Edition, 268 pages", + "date": "1979", + "summary": "Sinai : The Great and Terrible Wilderness by Burton Bernstein (1979)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["953.1"], + "wording": ["Arabian Peninsula and adjacent areas", + "History & geography", + "History of Asia", + "Sinai Peninsula [Gaza Strip now at 956.943]"] + }, + "lcc": { + "code": "DS110.B46" + }, + "subject": [["Bernstein, Burton"], + ["Journalists", + "United States", + "Biography"], + ["Sinai (Egypt)", + "Description and travel"]], + "source": "amazon.com books", + "workcode": "1930151", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "268 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.2 pounds", + "pages": "268 " +}, +"271645716": { + "books_id": "271645716", + "title": "My People: The Story of the Jews", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Eban, Abba", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Eban, Abba", + "fl": "Abba Eban", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0394727592", + "isbn": { + "0": "0394727592", + "2": "9780394727592" + }, + "asin": "0394727592", + "ean": ["0394727592"], + "publication": "Random House (1984), Edition: 7th prtg, 550 pages", + "date": "1984", + "summary": "My People: The Story of the Jews by Abba Eban (1984)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.09"], + "wording": ["History", + "History & geography", + "Other Geographic Classifications", + "World history"] + }, + "lcc": { + "code": "DS117.E2" + }, + "subject": { + "0": ["Jews", + "History"], + "2": ["Jews", + "history"] + }, + "originaltitle": "My People : The Story of the Jews", + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "1944"], + "source": "amazon.com all media", + "workcode": "764138", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "550 p.", + "height": "9.8 inches", + "thickness": "2 inches", + "length": "7.5 inches", + "dimensions": "9.8 x 7.5 x 2 inches", + "weight": "2.14289318664 pounds", + "pages": "550 " +}, +"271645718": { + "books_id": "271645718", + "title": "Mr. Benjamin's sword;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abrahams, Robert D", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrahams, Robert D", + "fl": "Robert D Abrahams", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007EVRL0", + "publication": "Jewish Publ. Society (1948), Edition: First Edition, 183 pages", + "date": "1948", + "summary": "Mr. Benjamin's sword; by Robert D Abrahams (1948)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ7.A168 M" + }, + "source": "amazon.com all media", + "workcode": "6633037", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645748": { + "books_id": "271645748", + "title": "The Slave", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Singer, Isaac Bashevis", + "primaryauthorrole": "Author", + "secondaryauthor": "Hemley, Cecil", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Singer, Isaac Bashevis", + "fl": "Isaac Bashevis Singer", + "role": "Author" + }, + { + "lf": "Hemley, Cecil", + "fl": "Cecil Hemley", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0374506809", + "isbn": { + "0": "0374506809", + "2": "9780374506803" + }, + "asin": "0374506809", + "ean": ["0374506809"], + "publication": "Farrar, Straus and Giroux (1988), 320 pages", + "date": "1988", + "summary": "The Slave by Isaac Bashevis Singer (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["839.133"], + "wording": ["1860-1945", + "Fiction", + "German & related literatures", + "Literature", + "Other Germanic literatures", + "Yiddish literature"] + }, + "lcc": { + "code": "PZ3.S61657 S" + }, + "subject": { + "0": ["American fiction", + "20th century", + "Translated from Yiddish"], + "1": ["Jewish fiction"], + "3": ["Jews", + "Fiction"], + "5": ["Yiddish fiction"], + "6": ["Yiddish fiction", + "20th century", + "Translations into English"] + }, + "awards": ["Audie Award", + "National Jewish Book Award", + "Nobel Prize in Literature", + "Notable Books List", + "Torchlight List"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com all media", + "workcode": "85831", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "320 p.; 8.28 inches", + "height": "8.2799047 inches", + "thickness": "0.84 inches", + "length": "5.6098313 inches", + "dimensions": "8.2799047 x 5.6098313 x 0.84 inches", + "weight": "0.63 pounds", + "pages": "320 " +}, +"271645758": { + "books_id": "271645758", + "title": "West of the Nile: A story of Saadia Gaon", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Burstein, Abraham", + "primaryauthorrole": "Author", + "secondaryauthor": "Simon, Howard", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Burstein, Abraham", + "fl": "Abraham Burstein", + "role": "Author" + }, + { + "lf": "Simon, Howard", + "fl": "Howard Simon", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007FWSC6", + "publication": "Hebrew Publishing Company (1942), 143 pages", + "date": "1942", + "summary": "West of the Nile: A story of Saadia Gaon by Abraham Burstein (1942)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": { + "code": "PZ3.B9467 W PS3503" + }, + "subject": [["Jewish fiction"], + ["Sa?adia ben Joseph, 882-942", + "Fiction"]], + "source": "amazon.com all media", + "workcode": "3438143", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645765": { + "books_id": "271645765", + "title": "Sound the Great Trumpet : The Story of Israel Through the Eyes of Those Who Built it", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Edited by M.Z. Frank", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Edited by M.Z. Frank", + "fl": "Edited by M.Z. Frank", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000O5YLTC", + "publication": "Whittier Books, Inc; New York; 1955 (1955), Edition: First Edition, 413 pages", + "date": "1955", + "summary": "Sound the Great Trumpet : The Story of Israel Through the Eyes of Those Who Built it by Edited by M.Z. Frank (1955)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876916", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645771": { + "books_id": "271645771", + "title": "The Passion of Israel [By] Leonard Wolf. Interviews Taken and Edited in Collaboration with Deborah Wolf", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Wolf, Leonard", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Wolf, Leonard", + "fl": "Leonard Wolf", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B002B9F7WY", + "publication": "Boston, Little, Brown & Company (1970), Edition: First Edition", + "date": "1970", + "summary": "The Passion of Israel [By] Leonard Wolf. Interviews Taken and Edited in Collaboration with Deborah Wolf by Leonard Wolf (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["915.694"], + "wording": ["Geography & travel", + "Geography of and travel in Asia", + "History & geography", + "Middle East", + "Palestine; Israel", + "Syria, Lebanon, Cyprus, Israel, Jordan"] + }, + "lcc": { + "code": "DS126.W64" + }, + "source": "amazon.com all media", + "workcode": "6699990", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "weight": "2.05 pounds" +}, +"271645784": { + "books_id": "271645784", + "title": "Border Hawk August Bondi", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Alexander, Lloyd", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Alexander, Lloyd", + "fl": "Lloyd Alexander", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006AV4HW", + "publication": "Covenant Books / Farrar Strauss and Cudahy (1958), 182 pages", + "date": "1958", + "summary": "Border Hawk August Bondi by Lloyd Alexander (1958)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["922.968"], + "wording": ["Biography & genealogy", + "Ethnic and other", + "History & geography", + "Jews", + "Religious leaders, thinkers, workers"] + }, + "lcc": { + "code": "PZ7.A3774 B" + }, + "series": ["Covenant books"], + "awards": ["National Jewish Book Award"], + "genre": ["Biography & Memoir", + "Kids", + "Tween"], + "genre_id": ["1240", + "24", + "1191"], + "source": "amazon.com all media", + "workcode": "6633072", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "182 p.", + "weight": "1 pound", + "pages": "182 " +}, +"271645787": { + "books_id": "271645787", + "title": "My Father the Actor", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Bernardi, Jack", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Bernardi, Jack", + "fl": "Jack Bernardi", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0393074579", + "isbn": { + "0": "0393074579", + "2": "9780393074574" + }, + "asin": "0393074579", + "ean": ["0393074579"], + "publication": "Norton (1971), Edition: First Edition, 233 pages", + "date": "1971", + "summary": "My Father the Actor by Jack Bernardi (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["792.028"], + "wording": ["Acting and Performance", + "Arts & recreation", + "Sports, games & entertainment", + "Stage presentations", + "Standard subdivisions and types of stage presentation", + "Techniques, procedures, apparatus, equipment, materials, miscellany"] + }, + "lcc": { + "code": "PN2287.B437 B4" + }, + "source": "amazon.com all media", + "workcode": "11264216", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "233 p.", + "weight": "1 pound", + "pages": "233 " +}, +"271645788": { + "books_id": "271645788", + "title": "The Man From There", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Ben-Ner, Yitzhak", + "primaryauthorrole": "Author", + "secondaryauthor": "Shefer, Dorothea", + "secondaryauthorroles": "Translator", + "authors": [{ + "lf": "Ben-Ner, Yitzhak", + "fl": "Yitzhak Ben-Ner", + "role": "Author" + }, + { + "lf": "Shefer, Dorothea", + "fl": "Dorothea Shefer", + "role": "Translator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0876310307", + "isbn": { + "0": "0876310307", + "2": "9780876310304" + }, + "asin": "0876310307", + "ean": ["0876310307"], + "publication": "Sabra Books (1970), 182 pages", + "date": "1970", + "summary": "The Man From There by Yitzhak Ben-Ner (1970)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["892.4"], + "wording": ["Afro-Asiatic literatures", + "Jewish, Israeli, and Hebrew", + "Literature", + "Other literatures"] + }, + "lcc": { + "code": "PZ4.B4553 PJ5054 .B4238" + }, + "source": "amazon.com all media", + "workcode": "8003632", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271645790": { + "books_id": "271645790", + "title": "The Case for Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Dershowitz, Alan", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Dershowitz, Alan", + "fl": "Alan Dershowitz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0471679526", + "isbn": { + "0": "0471679526", + "2": "9780471679523" + }, + "asin": "0471679526", + "ean": ["8601404444890"], + "upc": ["723812697342"], + "publication": "John Wiley & Sons, Inc. (2004), Edition: 1, 265 pages", + "date": "2004", + "summary": "The Case for Israel by Alan Dershowitz (2004)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125 .D47" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Israel", + "History"], + "4": ["Israel", + "history"], + "5": ["Jews", + "Colonization", + "Palestine"], + "6": ["Jews", + "Palestine", + "History"], + "8": ["Jews", + "Palestine.", + "Colonization"], + "9": ["Refugees, Jewish", + "Palestine", + "History"], + "11": ["Zionism"], + "13": ["Zionists", + "Palestine", + "History"] + }, + "awards": ["New York Times bestseller"], + "genre": ["Nonfiction", + "General Nonfiction", + "History", + "Politics, Government, Law and Public Policy", + "Religion & Spirituality"], + "genre_id": ["20275895", + "1247", + "1599", + "3805", + "1944"], + "source": "amazon.com books", + "workcode": "22255", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "265 p.; 9.3 inches", + "height": "9.3 inches", + "thickness": "0.78 inches", + "length": "6.1 inches", + "dimensions": "9.3 x 6.1 x 0.78 inches", + "weight": "2.314853751 pounds", + "pages": "265 " +}, +"271645804": { + "books_id": "271645804", + "title": "The army of Israel", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Pearlman, Moshe", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Pearlman, Moshe", + "fl": "Moshe Pearlman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0802212956", + "isbn": { + "0": "0802212956", + "2": "9780802212955" + }, + "asin": "B0007DZ5CS", + "ean": ["0802212956"], + "publication": "Philosophical Library (1950), Edition: Not Stated, 256 pages", + "date": "1950", + "summary": "The army of Israel by Moshe Pearlman (1950)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.4 .P4" + }, + "source": "amazon.com books", + "workcode": "1830198", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.", + "weight": "3 pounds", + "pages": "256 " +}, +"271645827": { + "books_id": "271645827", + "title": "Jerusalem: The Endless Crusade: The Struggle for the Holy City from its Foundation to the Modern Era", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sinclair, Andrew", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sinclair, Andrew", + "fl": "Andrew Sinclair", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0517594765", + "isbn": { + "0": "0517594765", + "2": "9780517594766" + }, + "asin": "B016UWNW0G", + "publication": "Lume Books (2015), 295 pages", + "date": "2015", + "summary": "Jerusalem: The Endless Crusade: The Struggle for the Holy City from its Foundation to the Modern Era by Andrew Sinclair (2015)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS109 .S54" + }, + "subject": { + "0": ["Jerusalem", + "History"], + "2": ["Jerusalem in Christianity"], + "4": ["Jerusalem in Islam"], + "6": ["Jerusalem in Judaism"] + }, + "source": "amazon.com books", + "workcode": "1998418", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.5 inches", + "dimensions": "9.25 x 6.5 x 1 inches", + "weight": "1.25 pounds", + "pages": "295 " +}, +"271645839": { + "books_id": "271645839", + "title": "The New Middle East", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Peres, Shimon", + "primaryauthorrole": "Author", + "secondaryauthor": "Naor, Arye", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Peres, Shimon", + "fl": "Shimon Peres", + "role": "Author" + }, + { + "lf": "Naor, Arye", + "fl": "Arye Naor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805033238", + "isbn": { + "0": "0805033238", + "2": "9780805033236" + }, + "asin": "0805033238", + "ean": ["0805033238"], + "publication": "Henry Holt & Co (1993), Edition: 1, 224 pages", + "date": "1993", + "summary": "The New Middle East by Shimon Peres (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.05"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .P447" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Israel. Treaties, etc. Muna?z?zamat al-Ta?hr?ir al-Filas?t?in?iyah, 1993 Sept. 13"], + "3": ["Jewish-Arab relations"], + "5": ["Middle East", + "Economic integration"], + "7": ["Middle East", + "Politics and government", + "1979-"], + "9": ["Palestinian Arabs", + "Politics and government"], + "11": ["Regional planning", + "Middle East"] + }, + "source": "amazon.com books", + "workcode": "70599", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.5 x 6 x 1 inches", + "weight": "1.25 pounds", + "pages": "224 " +}, +"271645884": { + "books_id": "271645884", + "title": "Day of No Return: (Until That Day)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Taylor, Kressmann", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Taylor, Kressmann", + "fl": "Kressmann Taylor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1413411819", + "isbn": { + "0": "1413411819", + "2": "9781413411812" + }, + "asin": "1413411819", + "ean": ["1413411819"], + "publication": "Xlibris (2003), 308 pages", + "date": "2003", + "summary": "Day of No Return: (Until That Day) by Kressmann Taylor (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.54"], + "wording": ["1900-1999", + "1945-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3539.A944 U58" + }, + "source": "amazon.com books", + "workcode": "9665252", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "308 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "0.7 inches", + "length": "5.5 inches", + "dimensions": "8.5 x 5.5 x 0.7 inches", + "weight": "0.82011961464 pounds", + "pages": "308 " +}, +"271645920": { + "books_id": "271645920", + "title": "Let My People Go", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Hess, Tom", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Hess, Tom", + "fl": "Tom Hess", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1878327666", + "isbn": { + "0": "1878327666", + "2": "9781878327666" + }, + "asin": "1878327666", + "ean": ["1878327666"], + "publication": "Morningstar Publications (NC) (2003)", + "date": "2003", + "summary": "Let My People Go by Tom Hess (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["612.21"], + "wording": ["Human physiology", + "Medicine & health", + "Respiration", + "Respiratory Movements; Mechanics of Respiration", + "Technology"] + }, + "lcc": { + "code": "BX8643.J84 H47" + }, + "source": "amazon.com books", + "workcode": "717660", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "9.3 x 0.38 inches", + "height": "0.38 inches", + "thickness": "5.84 inches", + "length": "9.3 inches", + "dimensions": "0.38 x 9.3 x 5.84 inches", + "weight": "0.55 pounds" +}, +"271645934": { + "books_id": "271645934", + "title": "Ghetto of Venice (English and Italian Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Calimani, Riccardo", + "primaryauthorrole": "Author", + "secondaryauthor": "Wolfthal, Katherine Silberblatt", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Calimani, Riccardo", + "fl": "Riccardo Calimani", + "role": "Author" + }, + { + "lf": "Wolfthal, Katherine Silberblatt", + "fl": "Katherine Silberblatt Wolfthal", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0871314843", + "isbn": { + "0": "0871314843", + "2": "9780871314840" + }, + "asin": "0871314843", + "ean": ["0871314843"], + "publication": "M Evans & Co (1987), Edition: First Edition, 313 pages", + "date": "1987", + "summary": "Ghetto of Venice (English and Italian Edition) by Riccardo Calimani (1987)", + "language": ["Italian"], + "language_codeA": ["ita"], + "originallanguage": ["Italian"], + "originallanguage_codeA": ["ita"], + "ddc": { + "code": ["945.31"], + "wording": ["History & geography", + "History of Europe", + "Italy, San Marino, Vatican City, Malta", + "Venetia"] + }, + "lcc": { + "code": "DS135.I85 V422613" + }, + "subject": [["Jews", + "Italy", + "Venice", + "History"], + ["Venice (Italy)", + "Ethnic relations"]], + "source": "amazon.com books", + "workcode": "1361685", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "313 p.", + "weight": "1.6 pounds", + "pages": "313 " +}, +"271645938": { + "books_id": "271645938", + "title": "Norway's Response to the Holocaust", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Abrahamsen, Samuel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Abrahamsen, Samuel", + "fl": "Samuel Abrahamsen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0896041174", + "isbn": { + "0": "0896041174", + "2": "9780896041172" + }, + "asin": "0896041174", + "ean": ["0896041174"], + "publication": "Unites States Holocaust (1991), 207 pages", + "date": "1991", + "summary": "Norway's Response to the Holocaust by Samuel Abrahamsen (1991)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["948.1"], + "wording": ["History & geography", + "History of Europe", + "Norway", + "Scandinavia and Finland"] + }, + "lcc": { + "code": "DS135.N8 A27" + }, + "source": "amazon.com books", + "workcode": "377962", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "207 p.; 8.75 inches", + "height": "8.75 inches", + "thickness": "0.75 inches", + "length": "5.75 inches", + "dimensions": "8.75 x 5.75 x 0.75 inches", + "pages": "207 " +}, +"271645962": { + "books_id": "271645962", + "title": "Abraham: A Journey to the Heart of Three Faiths", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Feiler, Bruce", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Feiler, Bruce", + "fl": "Bruce Feiler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0060838663", + "isbn": { + "0": "0060838663", + "2": "9780060838669" + }, + "asin": "0060838663", + "ean": ["0060838663"], + "publication": "William Morrow Paperbacks (2005), Edition: First Harper Perennial Edition, 234 pages", + "date": "2005", + "summary": "Abraham: A Journey to the Heart of Three Faiths by Bruce Feiler (2005)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["222.11092"], + "wording": ["Genesis", + "Historical books of Old Testament", + "Pentateuch", + "Religion", + "The Bible"] + }, + "lcc": { + "code": "BS580 .F45" + }, + "subject": [["Abraham (Biblical patriarch)"]], + "awards": ["Amazon.com Best Books", + "New York Times bestseller"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "Religion & Spirituality", + "Travel"], + "genre_id": ["20275895", + "1240", + "1247", + "1944", + "3578"], + "source": "amazon.com books", + "workcode": "98594", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "234 p.; 8.05 x 0.65 inches", + "height": "0.65 inches", + "thickness": "5.36 inches", + "length": "8.05 inches", + "dimensions": "0.65 x 8.05 x 5.36 inches", + "weight": "0.50044933474 pounds", + "pages": "234 " +}, +"271645973": { + "books_id": "271645973", + "title": "Walter Benjamin: The Story of a Friendship (New York Review Books Classics)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Scholem, Gershom Gerhard", + "primaryauthorrole": "Author", + "secondaryauthor": "Lee Siegel (Introduction)", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Scholem, Gershom Gerhard", + "fl": "Gershom Gerhard Scholem", + "role": "Author" + }, + { + "lf": "Lee Siegel (Introduction)", + "fl": "Lee Siegel (Introduction)", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "1590170326", + "isbn": { + "0": "1590170326", + "2": "9781590170328" + }, + "asin": "1590170326", + "ean": ["1590170326"], + "publication": "NYRB Classics (2003), Edition: Reprint, 328 pages", + "date": "2003", + "summary": "Walter Benjamin: The Story of a Friendship (New York Review Books Classics) by Gershom Gerhard Scholem (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["838.91209"], + "wording": ["1900-", + "1900-1945", + "1900-1990", + "German & related literatures", + "German miscellaneous writings", + "Individual authors not limited to one specific form : description; critical appraisal; biography; collected works", + "Literature"] + }, + "lcc": { + "code": "PT2603.E455 Z8913" + }, + "subject": [["Authors, German", + "20th century", + "Biography"], + ["Authors, German", + "Biography"], + ["Benjamin, Walter, 1892-1940", + "Friends and associates"], + ["Jewish scholars", + "Germany", + "Biography"], + ["Jewish scholars", + "Israel", + "Biography"], + ["Jews", + "Germany", + "Intellectual life"], + ["Scholem, Gershom Gerhard, 1897-"], + ["Scholem, Gershom Gerhard, 1897-1982"], + ["Scholem, Gershom Gerhard, 1897-1982."]], + "source": "amazon.com books", + "workcode": "195899", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "328 p.; 8 inches", + "height": "8 inches", + "thickness": "0.85 inches", + "length": "5 inches", + "dimensions": "8 x 5 x 0.85 inches", + "weight": "2.314853751 pounds", + "pages": "328 " +}, +"271645997": { + "books_id": "271645997", + "title": "Founding Fathers of Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Winer, Gershon", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Winer, Gershon", + "fl": "Gershon Winer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0819702641", + "isbn": { + "0": "0819702641", + "2": "9780819702647" + }, + "asin": "0819702641", + "ean": ["0819702641"], + "publication": "Bloch Pub Co (1971), Edition: First Edition, 289 pages", + "date": "1971", + "summary": "Founding Fathers of Israel by Gershon Winer (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.A2 W5" + }, + "source": "amazon.com books", + "workcode": "1820043", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "289 p.", + "weight": "1.2 pounds", + "pages": "289 " +}, +"271646028": { + "books_id": "271646028", + "title": "Look to the Hills", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Krantz, Hazel", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Krantz, Hazel", + "fl": "Hazel Krantz", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0827605714", + "isbn": { + "0": "0827605714", + "2": "9780827605718" + }, + "asin": "0827605714", + "ean": ["0827605714"], + "publication": "JEWISH PUBLICATON SOCIETY (1995), 240 pages", + "date": "1995", + "summary": "Look to the Hills by Hazel Krantz (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813"], + "wording": ["American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ7.K8594 L" + }, + "awards": ["Sydney Taylor Book Award"], + "genre": ["Fiction", + "Kids"], + "genre_id": ["17160326", + "24"], + "source": "amazon.com books", + "workcode": "7737240", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "240 p.; 8.56 inches", + "height": "8.56 inches", + "thickness": "0.64 inches", + "length": "5.64 inches", + "dimensions": "8.56 x 5.64 x 0.64 inches", + "weight": "0.59965735264 pounds", + "pages": "240 " +}, +"271646035": { + "books_id": "271646035", + "title": "Out of Egypt: A Memoir", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Aciman, André", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Aciman, André", + "fl": "André Aciman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0312426550", + "isbn": { + "0": "0312426550", + "2": "9780312426552" + }, + "asin": "0312426550", + "ean": ["0312426550"], + "publication": "Picador (2007), Edition: First Edition, 352 pages", + "date": "2007", + "summary": "Out of Egypt: A Memoir by André Aciman (2007)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["962.1"], + "wording": ["Egypt, Sudan, South Sudan", + "History & geography", + "History of Africa", + "Lower Egypt; Masr-el-Bahri; Delta"] + }, + "lcc": { + "code": "DS135.E42 A433" + }, + "subject": { + "0": ["Aciman family"], + "1": ["Aciman, Andr?e"], + "2": ["Aciman, Andr\ufffde"], + "3": ["Alexandria (Egypt)", + "Genealogy"], + "5": ["Jewish families", + "Egypt", + "Alexandria"], + "6": ["Jews", + "Alexandria", + "Genealogy"], + "7": ["Jews", + "Egypt", + "Alexandria", + "Biography"], + "8": ["Jews", + "Egypt", + "Alexandria", + "Genealogy"] + }, + "awards": ["Whiting Award"], + "genre": ["Nonfiction", + "Biography & Memoir"], + "genre_id": ["20275895", + "1240"], + "source": "amazon.com books", + "workcode": "27910", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "352 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "0.9 inches", + "length": "5.3999892 inches", + "dimensions": "8.25 x 5.3999892 x 0.9 inches", + "weight": "2.314853751 pounds", + "pages": "352 " +}, +"271646057": { + "books_id": "271646057", + "title": "The Baders of Jacob Street", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Karmel-Wolfe, Henia", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Karmel-Wolfe, Henia", + "fl": "Henia Karmel-Wolfe", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B001AVK7ME", + "publication": "Popular Library, 288 pages", + "summary": "The Baders of Jacob Street by Henia Karmel-Wolfe", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PZ4.K184 PS3561 .A675" + }, + "source": "amazon.com books", + "workcode": "10579312", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "288 p.", + "weight": "1.01 pounds", + "pages": "288 " +}, +"271646071": { + "books_id": "271646071", + "title": "Leonard Bernstein (A Biography For Young People)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ewen, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ewen, David", + "fl": "David Ewen", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000C7V3C0", + "publication": "Chilton Book Co. (1967), Edition: 6th, 180 pages", + "date": "1967", + "summary": "Leonard Bernstein (A Biography For Young People) by David Ewen (1967)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["927.8"], + "wording": ["Biography & genealogy", + "Composers And Musicians", + "History & geography", + "People in the arts and recreation"] + }, + "lcc": { + "code": "ML3930.B48 E9" + }, + "subject": [["Bernstein, Leonard, 1918-1990", + "Juvenile literature"]], + "source": "amazon.com books", + "workcode": "1594035", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "180 p.", + "weight": "1.01 pounds", + "pages": "180 " +}, +"271646087": { + "books_id": "271646087", + "title": "O My America!: A Novel (Library of Modern Jewish Literature)", + "sortcharacter": "3", + "public": "true", + "primaryauthor": "Kaplan, Johanna", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Kaplan, Johanna", + "fl": "Johanna Kaplan", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0815603282", + "isbn": { + "0": "0815603282", + "2": "9780815603283" + }, + "asin": "0815603282", + "ean": ["0815603282"], + "publication": "Syracuse University Press (1995), Edition: Reprint, 286 pages", + "date": "1995", + "summary": "O My America!: A Novel (Library of Modern Jewish Literature) by Johanna Kaplan (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["813.5"], + "wording": ["1900-1999", + "American fiction in English", + "American literature in English", + "Literature"] + }, + "lcc": { + "code": "PS3561.A56 O2" + }, + "subject": [["Domestic fiction"], + ["Fathers and daughters", + "Fiction"], + ["Socialists", + "Fiction"]], + "awards": ["Edward Lewis Wallant Award", + "National Book Award", + "National Jewish Book Award"], + "genre": ["Fiction", + "General Fiction", + "Historical Fiction"], + "genre_id": ["17160326", + "2", + "41890"], + "source": "amazon.com books", + "workcode": "2000419", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "286 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "5.75 inches", + "dimensions": "8.5 x 5.75 x 1 inches", + "weight": "0.85098433132 pounds", + "pages": "286 " +}, +"271646121": { + "books_id": "271646121", + "title": "Kafka and the Yiddish Theater: Its Impact on His Work", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Beck, Evelyn Torton", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Beck, Evelyn Torton", + "fl": "Evelyn Torton Beck", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0299058816", + "isbn": { + "0": "0299058816", + "2": "9780299058814" + }, + "asin": "0299058816", + "ean": ["0299058816"], + "publication": "Univ of Wisconsin Pr (1971), Edition: First Edition, 248 pages", + "date": "1971", + "summary": "Kafka and the Yiddish Theater: Its Impact on His Work by Evelyn Torton Beck (1971)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["833.9"], + "wording": ["1900-", + "German & related literatures", + "German fiction", + "Literature"] + }, + "lcc": { + "code": "PT2621.A26 Z585" + }, + "source": "amazon.com books", + "workcode": "5609840", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "248 p.; 8.96 inches", + "height": "8.96 inches", + "thickness": "5.94 inches", + "length": "1.02 inches", + "dimensions": "8.96 x 1.02 x 5.94 inches", + "pages": "248 " +}, +"271646151": { + "books_id": "271646151", + "title": "The New Anti-Semitism : The Current Crisis and What We Must Do About It", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Chesler, Phyllis", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Chesler, Phyllis", + "fl": "Phyllis Chesler", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "078796851X", + "isbn": { + "0": "078796851X", + "2": "9780787968519" + }, + "asin": "078796851X", + "ean": ["078796851X"], + "publication": "Jossey-Bass Inc Pub (2003), Edition: 1, 256 pages", + "date": "2003", + "summary": "The New Anti-Semitism : The Current Crisis and What We Must Do About It by Phyllis Chesler (2003)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["305.892"], + "wording": ["Ethnic and national groups", + "Groups of people", + "Social sciences", + "Social sciences, sociology & anthropology"] + }, + "lcc": { + "code": "DS145 .C5" + }, + "source": "amazon.com books", + "workcode": "222116", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 9.75 inches", + "height": "9.75 inches", + "thickness": "1.25 inches", + "length": "6.5 inches", + "dimensions": "9.75 x 6.5 x 1.25 inches", + "weight": "3.6 pounds", + "pages": "256 " +}, +"271646186": { + "books_id": "271646186", + "title": "White Nights: The Story of a Prisoner in Russia", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Begin, Menachem", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Begin, Menachem", + "fl": "Menachem Begin", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00K0ZF03C", + "publication": "Tolmitch E-Books (2014), 240 pages", + "date": "2014", + "summary": "White Nights: The Story of a Prisoner in Russia by Menachem Begin (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["947.084"], + "wording": ["1855-", + "1917-1953 ; Communist period", + "History & geography", + "History of Europe", + "Russia and neighboring east European countries", + "Russian & Slavic History by Period"] + }, + "lcc": { + "code": "DS126.B33 A313" + }, + "subject": { + "0": ["Begin, Menachem, 1913-", + "Imprisonment"], + "1": ["Begin, Menachem, 1913-1992", + "Imprisonment"], + "2": ["Political prisoners", + "Soviet Union", + "Biography"], + "4": ["Prime ministers", + "Israel", + "Biography"], + "6": ["Zionists", + "Poland", + "Biography"] + }, + "source": "amazon.com books", + "workcode": "392241", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}, +"271646240": { + "books_id": "271646240", + "title": "In Time and Eternity: A Jewish Reader", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Glatzer, Nahum N.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Glatzer, Nahum N.", + "fl": "Nahum N. Glatzer", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805200169", + "isbn": { + "0": "0805200169", + "2": "9780805200164" + }, + "asin": "0805200169", + "ean": ["0805200169"], + "publication": "Schocken (1988), Edition: 2nd, 250 pages", + "date": "1988", + "summary": "In Time and Eternity: A Jewish Reader by Nahum N. Glatzer (1988)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.7"], + "wording": ["Jewish life and customs", + "Judaism", + "Other religions", + "Religion"] + }, + "lcc": { + "code": "BM724 .G49" + }, + "subject": [["Judaism", + "Prayers and devotions"]], + "source": "amazon.com books", + "workcode": "2887825", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "250 p.", + "height": "7.9 inches", + "thickness": "0.8 inches", + "length": "5.3 inches", + "dimensions": "7.9 x 5.3 x 0.8 inches", + "weight": "0.6 pounds", + "pages": "250 " +}, +"271646291": { + "books_id": "271646291", + "title": "In the Name of Sorrow and Hope", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben Artzi-Pelossof, Noa", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben Artzi-Pelossof, Noa", + "fl": "Noa Ben Artzi-Pelossof", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0679450793", + "isbn": { + "0": "0679450793", + "2": "9780679450795" + }, + "asin": "0679450793", + "ean": ["0679450793"], + "publication": "Knopf (1996), Edition: First Edition, 181 pages", + "date": "1996", + "summary": "In the Name of Sorrow and Hope by Noa Ben Artzi-Pelossof (1996)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.9405"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "CT1919.P38 B44" + }, + "subject": [["Ben Artzi-Pelossof, Noa"], + ["Rabin family"], + ["Rabin, Yitzhak, 1922-1995", + "Family"], + ["Youth", + "Israel", + "Biography"]], + "source": "amazon.com books", + "workcode": "370441", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "181 p.; 8.25 inches", + "height": "8.25 inches", + "thickness": "1 inch", + "length": "5.5 inches", + "dimensions": "8.25 x 5.5 x 1 inches", + "weight": "0.75 pounds", + "pages": "181 " +}, +"271646334": { + "books_id": "271646334", + "title": "Building a Judaica library collection: A resource guide", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "E. Lubetski", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "E. Lubetski", + "fl": "E. Lubetski", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0872873757", + "isbn": { + "0": "0872873757", + "2": "9780872873759" + }, + "asin": "0872873757", + "ean": ["0872873757"], + "publication": "Libraries Unlimited", + "summary": "Building a Judaica library collection: A resource guide by E. Lubetski", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["025.2"], + "wording": ["Collection development and acquisitions", + "Computer science, information & general works", + "Library & information sciences", + "Operations of libraries and archives"] + }, + "lcc": { + "code": "Z688.J48 L82" + }, + "source": "amazon.com books", + "workcode": "3618896", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271646338": { + "books_id": "271646338", + "title": "Student workbook for understanding Israel", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Sugarman, Morris J", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Sugarman, Morris J", + "fl": "Morris J Sugarman", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006WW442", + "publication": "Behrman House (1977), 219 pages", + "date": "1977", + "summary": "Student workbook for understanding Israel by Morris J Sugarman (1977)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "lcc": [], + "source": "amazon.com books", + "workcode": "32876957", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1", + "text": "Paper Book" + }], + "copies": "1" +}, +"271646355": { + "books_id": "271646355", + "title": "Ben Gurion: The Burning Ground, 1886-1948 (English and Hebrew Edition)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Teveth, Shabtai", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Teveth, Shabtai", + "fl": "Shabtai Teveth", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0395483581", + "isbn": { + "0": "0395483581", + "2": "9780395483589" + }, + "asin": "0395483581", + "ean": ["0395483581"], + "publication": "Houghton Mifflin (1988), Edition: First Edition, 967 pages", + "date": "1988", + "summary": "Ben Gurion: The Burning Ground, 1886-1948 (English and Hebrew Edition) by Shabtai Teveth (1988)", + "language": ["Hebrew"], + "language_codeA": ["heb"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["heb"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS125.B37 T475" + }, + "subject": { + "0": ["Ben-Gurion, David, 1886-1973"], + "1": ["Prime ministers", + "Israel", + "Biography"], + "3": ["Zionists", + "Palestine", + "Biography"] + }, + "awards": ["National Jewish Book Award"], + "genre": ["Nonfiction", + "Biography & Memoir", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1240", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "927662", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "967 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "2 inches", + "length": "6 inches", + "dimensions": "9.25 x 6 x 2 inches", + "weight": "2.65 pounds", + "pages": "967 " +}, +"271646490": { + "books_id": "271646490", + "title": "Toby Belfer's Seder: A Passover Story Retold (Toby Belfer Series)", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Pushker, Gloria", + "primaryauthorrole": "Author", + "secondaryauthor": "Hierstein, Judith", + "secondaryauthorroles": "Illustrator", + "authors": [{ + "lf": "Pushker, Gloria", + "fl": "Gloria Pushker", + "role": "Author" + }, + { + "lf": "Hierstein, Judith", + "fl": "Judith Hierstein", + "role": "Illustrator" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0882899872", + "isbn": { + "0": "0882899872", + "2": "9780882899879" + }, + "asin": "0882899872", + "ean": ["0882899872"], + "publication": "Pelican Publishing (1994), Edition: Illustrated, 32 pages", + "date": "1994", + "summary": "Toby Belfer's Seder: A Passover Story Retold (Toby Belfer Series) by Gloria Pushker (1994)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["296.4"], + "wording": ["Judaism", + "Other religions", + "Religion", + "Rites, Services, Practice"] + }, + "lcc": { + "code": "BM695.P35 P85" + }, + "source": "amazon.com books", + "workcode": "4740637", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "32 p.; 11.5 inches", + "height": "11.5 inches", + "thickness": "0.5 inches", + "length": "9 inches", + "dimensions": "11.5 x 9 x 0.5 inches", + "weight": "1.00089866948 pounds", + "pages": "32 " +}, +"271646494": { + "books_id": "271646494", + "title": "The Jew in the Modern World: A Documentary History", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Mendes-Flohr, Paul", + "primaryauthorrole": "Editor", + "secondaryauthor": "Reinharz, Jehuda", + "secondaryauthorroles": "Editor", + "authors": [{ + "lf": "Mendes-Flohr, Paul", + "fl": "Paul Mendes-Flohr", + "role": "Editor" + }, + { + "lf": "Reinharz, Jehuda", + "fl": "Jehuda Reinharz", + "role": "Editor" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "019507453X", + "isbn": { + "0": "019507453X", + "2": "9780195074536" + }, + "asin": "019507453X", + "ean": ["019507453X"], + "publication": "Oxford University Press (1995), Edition: 2nd, 766 pages", + "date": "1995", + "summary": "The Jew in the Modern World: A Documentary History by Paul Mendes-Flohr (1995)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["909.04924"], + "wording": ["History", + "History & geography", + "History with respect to ethnic and national groups", + "Jews, Hebrews, Israelis", + "Other", + "Semites", + "World history"] + }, + "lcc": { + "code": "DS102 .J43" + }, + "subject": [["Jews", + "History", + "1789-1945", + "Sources"], + ["Jews", + "History", + "17th century", + "Sources"], + ["Jews", + "History", + "18th century", + "Sources"], + ["Jews", + "History", + "Sources"], + ["Jews", + "Sources"], + ["Judaism", + "History", + "Modern period, 1750-", + "Sources"], + ["Judaism", + "History", + "Sources"], + ["Judaism", + "Sources"]], + "source": "amazon.com books", + "workcode": "915144", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "766 p.; 9.19 x 6.5 inches", + "height": "6.5 inches", + "thickness": "1.35 inches", + "length": "9.19 inches", + "dimensions": "6.5 x 9.19 x 1.35 inches", + "weight": "2.44933573082 pounds", + "pages": "766 " +}, +"271646540": { + "books_id": "271646540", + "title": "Rebirth and destiny of Israel;", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ben-Gurion, David", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ben-Gurion, David", + "fl": "David Ben-Gurion", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0007DEAM4", + "publication": "Philosophical Library (1954), Edition: First Edition, 539 pages", + "date": "1954", + "summary": "Rebirth and destiny of Israel; by David Ben-Gurion (1954)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "heb"], + "ddc": { + "code": ["956.94004"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.B4" + }, + "subject": [["Palestine", + "History"]], + "source": "amazon.com books", + "workcode": "2276984", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1" +}, +"271646567": { + "books_id": "271646567", + "title": "The New Middle East", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Peres, Shimon", + "primaryauthorrole": "Author", + "secondaryauthor": "Naor, Arye", + "secondaryauthorroles": "Author", + "authors": [{ + "lf": "Peres, Shimon", + "fl": "Shimon Peres", + "role": "Author" + }, + { + "lf": "Naor, Arye", + "fl": "Arye Naor", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0805033238", + "isbn": { + "0": "0805033238", + "2": "9780805033236" + }, + "asin": "0805033238", + "ean": ["0805033238"], + "publication": "Henry Holt & Co (1993), Edition: 1, 224 pages", + "date": "1993", + "summary": "The New Middle East by Shimon Peres (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.05"], + "wording": ["1980–", + "History & geography", + "History of Asia", + "Middle East", + "Middle East (Near East)"] + }, + "lcc": { + "code": "DS119 .P447" + }, + "subject": { + "0": ["Arab-Israeli conflict"], + "2": ["Israel. Treaties, etc. Muna?z?zamat al-Ta?hr?ir al-Filas?t?in?iyah, 1993 Sept. 13"], + "3": ["Jewish-Arab relations"], + "5": ["Middle East", + "Economic integration"], + "7": ["Middle East", + "Politics and government", + "1979-"], + "9": ["Palestinian Arabs", + "Politics and government"], + "11": ["Regional planning", + "Middle East"] + }, + "source": "amazon.com books", + "workcode": "70599", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "224 p.; 8.5 inches", + "height": "8.5 inches", + "thickness": "1 inch", + "length": "6 inches", + "dimensions": "8.5 x 6 x 1 inches", + "weight": "1.25 pounds", + "pages": "224 " +}, +"271646589": { + "books_id": "271646589", + "title": "Chinese Kosher Cooking", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Goldberg, Betty S.", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Goldberg, Betty S.", + "fl": "Betty S. Goldberg", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0824602927", + "isbn": { + "0": "0824602927", + "2": "9780824602925" + }, + "asin": "0824602927", + "ean": ["0824602927"], + "publication": "Jonathan David Pub (1989), Edition: First Edition, 372 pages", + "date": "1989", + "summary": "Chinese Kosher Cooking by Betty S. Goldberg (1989)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["641.5676"], + "wording": ["Cooking, Specialized Situations ", + "Cooking; cookbooks", + "Cultural, Religious groups", + "Food and drink", + "Home & family management", + "Jewish Cooking", + "Technology"] + }, + "lcc": { + "code": "TX724 .G652" + }, + "source": "amazon.com books", + "workcode": "317815", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "372 p.; 9.25 inches", + "height": "9.25 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.25 x 6.25 x 1 inches", + "weight": "1.57 pounds", + "pages": "372 " +}, +"271646632": { + "books_id": "271646632", + "title": "Between Hammer & Sickle", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Ami, Ben", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Ami, Ben", + "fl": "Ben Ami", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B0006D967E", + "publication": "Jewish Publication Society of America (1967), Edition: First Edition, 307 pages", + "date": "1967", + "summary": "Between Hammer & Sickle by Ben Ami (1967)", + "language": ["English", + "Italian"], + "language_codeA": ["eng", + "ita"], + "originallanguage": ["Hebrew"], + "originallanguage_codeA": ["eng", + "ita", + "heb"], + "ddc": { + "code": ["301.45"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "DS135.R9 E43" + }, + "source": "amazon.com books", + "workcode": "6756460", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "307 p.", + "weight": "3 pounds", + "pages": "307 " +}, +"271646654": { + "books_id": "271646654", + "title": "Kosher Southern-Style Cookbook", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Covert, Mildred", + "primaryauthorrole": "Author", + "secondaryauthor": "Gerson, Alan|Gerson, Sylvia|Newman, Rabbi Gavriel", + "secondaryauthorroles": "Illustrator|Author|Foreword", + "authors": [{ + "lf": "Covert, Mildred", + "fl": "Mildred Covert", + "role": "Author" + }, + { + "lf": "Gerson, Alan", + "fl": "Alan Gerson", + "role": "Illustrator" + }, + { + "lf": "Gerson, Sylvia", + "fl": "Sylvia Gerson", + "role": "Author" + }, + { + "lf": "Newman, Rabbi Gavriel", + "fl": "Rabbi Gavriel Newman", + "role": "Foreword" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0882898507", + "isbn": { + "0": "0882898507", + "2": "9780882898506" + }, + "asin": "0882898507", + "ean": ["0882898507"], + "publication": "Pelican Publishing (1993), Edition: First Edition, 256 pages", + "date": "1993", + "summary": "Kosher Southern-Style Cookbook by Mildred Covert (1993)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["641.56760975"], + "wording": ["Cooking, Specialized Situations ", + "Cooking; cookbooks", + "Cultural, Religious groups", + "Food and drink", + "Home & family management", + "Jewish Cooking", + "Technology"] + }, + "lcc": { + "code": "TX715.S68 C685" + }, + "source": "amazon.com books", + "workcode": "1308695", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "256 p.; 9.5 inches", + "height": "9.5 inches", + "thickness": "1 inch", + "length": "6.25 inches", + "dimensions": "9.5 x 6.25 x 1 inches", + "weight": "1.15081300764 pounds", + "pages": "256 " +}, +"271646670": { + "books_id": "271646670", + "title": "The Israelis: Founders and Sons; Revised Edition", + "sortcharacter": "5", + "public": "true", + "primaryauthor": "Elon, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elon, Amos", + "fl": "Amos Elon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "originalisbn": "0140169695", + "isbn": { + "0": "0140169695", + "2": "9780140169690" + }, + "asin": "0140169695", + "ean": ["0140169695"], + "publication": "Penguin Publishing Group (1983), 384 pages", + "date": "1983", + "summary": "The Israelis: Founders and Sons; Revised Edition by Amos Elon (1983)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS126.E4195" + }, + "subject": { + "0": ["Israel", + "History"], + "1": ["Israel", + "Politics and government"], + "2": ["Israel", + "history"], + "3": ["Israel", + "politics and government"], + "4": ["Israelis", + "Psychology"], + "6": ["Jewish-Arab relations"], + "8": ["National characteristics, Israeli"], + "10": ["Zionism"] + }, + "awards": ["Notable Books List"], + "genre": ["Nonfiction", + "General Nonfiction", + "History"], + "genre_id": ["20275895", + "1247", + "1599"], + "source": "amazon.com books", + "workcode": "239798", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.1", + "text": "Paperback" + }], + "copies": "1", + "physical_description": "384 p.; 7.76 x 0.86 inches", + "height": "0.85826771566 inches", + "thickness": "5.0787401523 inches", + "length": "7.7559055039 inches", + "dimensions": "0.85826771566 x 7.7559055039 x 5.0787401523 inches", + "weight": "0.8377565956 pounds", + "pages": "384 " +}, +"271646703": { + "books_id": "271646703", + "title": "\"Some of My Best Friends...\" : The First Fully Documented Story of a Shocking Evil in American Life, Furtively Practiced and Pervasive", + "sortcharacter": "2", + "public": "true", + "primaryauthor": "Epstein, Benjamin R. & Forster, Arnold", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Epstein, Benjamin R. & Forster, Arnold", + "fl": "Benjamin R. & Forster Epstein, Arnold", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B000IXY9OM", + "publication": "FARRAR & STRAUS (1962), Edition: 3RD PRINTING, 274 pages", + "date": "1962", + "summary": "\"Some of My Best Friends...\" : The First Fully Documented Story of a Shocking Evil in American Life, Furtively Practiced and Pervasive by Benjamin R. & Forster Epstein, Arnold (1962)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["301.452"], + "wording": ["Formerly: Social structure", + "Social sciences", + "Social sciences, sociology & anthropology", + "Sociology and anthropology"] + }, + "lcc": { + "code": "E184.J5 E6" + }, + "subject": { + "0": ["Antisemitism", + "United States"], + "2": ["Discrimination", + "United States"], + "4": ["Jews", + "United States"] + }, + "source": "amazon.com books", + "workcode": "1103962", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.1.2", + "text": "Hardcover" + }], + "copies": "1", + "physical_description": "274 p.", + "weight": "1.9 pounds", + "pages": "274 " +}, +"271646731": { + "books_id": "271646731", + "title": "Herzl", + "sortcharacter": "1", + "public": "true", + "primaryauthor": "Elon, Amos", + "primaryauthorrole": "Author", + "authors": [{ + "lf": "Elon, Amos", + "fl": "Amos Elon", + "role": "Author" + }], + "collections_idA": [1], + "collections": ["Your library"], + "asin": "B00P5892LK", + "publication": "Plunkett Lake Press (2014), 453 pages", + "date": "2014", + "summary": "Herzl by Amos Elon (2014)", + "language": ["English"], + "language_codeA": ["eng"], + "originallanguage": ["English"], + "originallanguage_codeA": ["eng"], + "ddc": { + "code": ["956.94"], + "wording": ["History & geography", + "History of Asia", + "Israel and Palestine", + "Middle East (Near East)", + "The Levant"] + }, + "lcc": { + "code": "DS151.H4 E57" + }, + "subject": [["Herzl, Theodor, 1860-1904"], + ["Zionists", + "Austria", + "Biography"]], + "source": "amazon.com books", + "workcode": "1511821", + "entrydate": "2024-09-15", + "format": [{ + "code": "1.3", + "text": "Ebook" + }], + "copies": "1" +}} \ No newline at end of file