├── README.md
├── .gitignore
├── pom.xml
└── src
└── main
├── java
└── com
│ └── datastax
│ └── quickstart
│ ├── QuickstartFindDemo.java
│ └── QuickstartUploadDemo.java
└── resources
└── quickstart_dataset.json
/README.md:
--------------------------------------------------------------------------------
1 | # data-api-java-client-quickstart
2 |
3 | Sample Codes for the Data API And Java Client
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | astra-sdk-java.wiki/
2 | .env
3 | .astrarc
4 | sec
5 |
6 |
7 | # eclipse conf file
8 | .settings
9 | .classpath
10 | .project
11 | .cache
12 |
13 | # idea conf files
14 | .idea
15 | *.ipr
16 | *.iws
17 | *.iml
18 |
19 | # building
20 | target
21 | build
22 | tmp
23 | releases
24 |
25 | # misc
26 | .DS_Store
27 |
28 | .factorypath
29 | .sts4-cache
30 | *.log
31 |
32 | release.properties
33 | pom.xml.releaseBackup
34 | dependency-reduced-pom*
--------------------------------------------------------------------------------
/pom.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 | 4.0.0
5 | com.datastax.quickstart
6 | data-api-java-client-quickstart
7 | jar
8 | 1.0-SNAPSHOT
9 |
10 |
11 |
12 | com.datastax.astra
13 | astra-db-java
14 | 2.0.0-PREVIEW
15 |
16 |
17 |
18 |
19 |
20 |
21 | org.apache.maven.plugins
22 | maven-compiler-plugin
23 | 3.13.0
24 |
25 | 21
26 | 21
27 |
28 |
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/src/main/java/com/datastax/quickstart/QuickstartFindDemo.java:
--------------------------------------------------------------------------------
1 | package com.datastax.quickstart;
2 |
3 | import com.datastax.astra.client.DataAPIClient;
4 | import com.datastax.astra.client.collections.Collection;
5 | import com.datastax.astra.client.collections.commands.options.CollectionFindOneOptions;
6 | import com.datastax.astra.client.collections.commands.options.CollectionFindOptions;
7 | import com.datastax.astra.client.collections.definition.documents.Document;
8 | import com.datastax.astra.client.core.paging.FindIterable;
9 | import com.datastax.astra.client.core.query.Filter;
10 | import com.datastax.astra.client.core.query.Filters;
11 | import com.datastax.astra.client.core.query.Sort;
12 |
13 | import java.util.Optional;
14 |
15 | public class QuickstartFindDemo {
16 | public static void main(String[] args) {
17 | // Settings
18 | String token = System.getenv("ASTRA_DB_APPLICATION_TOKEN");
19 | String endpoint = System.getenv("ASTRA_DB_API_ENDPOINT");
20 | String collectionName = "quickstart_collection";
21 |
22 | // Accessing the (existing) collection
23 | Collection collection = new DataAPIClient(token)
24 | .getDatabase(endpoint)
25 | .getCollection(collectionName);
26 |
27 | // Perform a vector search to find the closest match
28 | CollectionFindOneOptions findOneOptions = new CollectionFindOneOptions()
29 | .sort(Sort.vectorize("A scary novel"));
30 | collection.findOne(findOneOptions).ifPresent(document -> {
31 | System.out.println("Here is a scary novel: " + document.getString("title"));
32 | });
33 |
34 | // Perform a vector search to find the 5 closest matches
35 | CollectionFindOptions findManyOptions = new CollectionFindOptions()
36 | .sort(Sort.vectorize("A book set in the arctic"))
37 | .limit(5);
38 | System.out.println("Here are some books set in the arctic:");
39 | collection.find(findManyOptions).forEach(doc -> {
40 | System.out.println(doc.getString("title"));
41 | });
42 |
43 | // Find documents that match a filter
44 | Filter filter = Filters.gt("rating", 4.0);
45 | CollectionFindOptions options = new CollectionFindOptions().limit(10);
46 | collection.find(filter, options).forEach(doc -> {
47 | System.out.println(doc.getString("title") + " is rated " + doc.get("rating"));
48 | });
49 |
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/src/main/java/com/datastax/quickstart/QuickstartUploadDemo.java:
--------------------------------------------------------------------------------
1 | package com.datastax.quickstart;
2 |
3 | import com.datastax.astra.client.DataAPIClient;
4 | import com.datastax.astra.client.collections.Collection;
5 | import com.datastax.astra.client.collections.definition.CollectionDefinition;
6 | import com.datastax.astra.client.collections.definition.documents.Document;
7 | import com.datastax.astra.client.databases.Database;
8 | import com.fasterxml.jackson.core.JsonFactory;
9 | import com.fasterxml.jackson.core.JsonParser;
10 | import com.fasterxml.jackson.core.JsonToken;
11 | import com.fasterxml.jackson.databind.ObjectMapper;
12 | import lombok.extern.slf4j.Slf4j;
13 |
14 | import java.io.File;
15 | import java.io.IOException;
16 | import java.util.ArrayList;
17 | import java.util.List;
18 |
19 | public class QuickstartUploadDemo {
20 |
21 | public static void main(String[] args) {
22 | // Settings
23 | String token = System.getenv("ASTRA_DB_APPLICATION_TOKEN");
24 | String endpoint = System.getenv("ASTRA_DB_API_ENDPOINT");
25 | String jsonFile = "src/main/resources/quickstart_dataset.json";
26 | String collectionName = "quickstart_collection";
27 |
28 | // Load JSON Dataset
29 | List docs = loadJson(jsonFile);
30 | System.out.println("Loaded " + docs.size() + " documents from " + jsonFile);
31 |
32 | // For each document add a $vectorize field
33 | docs.forEach(doc -> {
34 | String summary = doc.getString("summary");
35 | String genres = String.join(", ", doc.getList("genres", String.class));
36 | doc.vectorize("summary: " + summary
37 | + " | genres: " + genres);
38 | });
39 |
40 | // Connect to Database
41 | Database database = new DataAPIClient(token).getDatabase(endpoint);
42 |
43 | // Create Collection for your documents
44 | Collection collection = database.createCollection(
45 | collectionName, new CollectionDefinition()
46 | .vectorize("nvidia", "NV-Embed-QA"));
47 |
48 | collection.deleteAll();
49 | // Upload documents to the collection
50 | collection.insertMany(docs);
51 | System.out.println("Uploaded "
52 | + collection.countDocuments(1000)
53 | + " documents to "
54 | + collectionName);
55 | }
56 |
57 | /**
58 | * Loads any JSON file into a list of Document objects.
59 | *
60 | * @param filename
61 | * the name of the file to load
62 | * @return
63 | * a list of Document objects
64 | */
65 | public static List loadJson(String filename) {
66 | List documentList = new ArrayList<>();
67 | JsonFactory factory = new JsonFactory();
68 | ObjectMapper mapper = new ObjectMapper();
69 | try (JsonParser parser = factory.createParser(new File(filename))) {
70 | if (parser.nextToken() == JsonToken.START_ARRAY) {
71 | while (parser.nextToken() == JsonToken.START_OBJECT) {
72 | documentList.add(mapper.readValue(parser, Document.class));
73 | }
74 | }
75 | return documentList;
76 | } catch (IOException e) {
77 | throw new RuntimeException("Cannot parse Json file");
78 | }
79 | }
80 |
81 | }
82 |
--------------------------------------------------------------------------------
/src/main/resources/quickstart_dataset.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "title": "Hidden Shadows of the Past",
4 | "author": "John Anthony",
5 | "number_of_pages": 481,
6 | "rating": 1.0,
7 | "publication_date": "2002-05-26",
8 | "summary": "Set against a forgotten metropolis, 'Hidden Shadows of the Past' by John Anthony unveils a journey to the underworld. The story builds through defying a cruel god, offering a gripping tale of suspense.",
9 | "genres": [
10 | "Biography",
11 | "Graphic Novel",
12 | "Dystopian",
13 | "Drama"
14 | ],
15 | "metadata": {
16 | "ISBN": "978-1-905585-40-3",
17 | "language": "French",
18 | "edition": "Anniversary Edition"
19 | },
20 | "isCheckedOut": false,
21 | "borrower": null,
22 | "dueDate": null
23 | },
24 | {
25 | "title": "Beyond Moments of Broken Promises",
26 | "author": "Daniel Larson",
27 | "number_of_pages": 704,
28 | "rating": 3.7,
29 | "publication_date": "1978-10-09",
30 | "summary": "Set against a secret base in the Arctic, 'Beyond Moments of Broken Promises' by Daniel Larson unveils a search for inner peace. The story builds through rediscovering a lost friendship, offering a thrilling and action-packed blockbuster.",
31 | "genres": [
32 | "Dystopian"
33 | ],
34 | "metadata": {
35 | "ISBN": "978-0-88734-027-7",
36 | "language": "Japanese",
37 | "edition": "Anniversary Edition"
38 | },
39 | "isCheckedOut": true,
40 | "borrower": "Alexander Rodriguez",
41 | "dueDate": "2024-12-18"
42 | },
43 | {
44 | "title": "Within Echoes Through Time",
45 | "author": "Ryan Jackson",
46 | "number_of_pages": 714,
47 | "rating": 2.4,
48 | "publication_date": "1993-05-30",
49 | "summary": "'Within Echoes Through Time' by Ryan Jackson immerses readers in a magical forest, where a quest for the truth collides with navigating treacherous terrain, delivering a rich and immersive world.",
50 | "genres": [
51 | "Tragedy",
52 | "Fantasy",
53 | "Satire"
54 | ],
55 | "metadata": {
56 | "ISBN": "978-0-02-313022-9",
57 | "language": "Spanish",
58 | "edition": "Illustrated Edition"
59 | },
60 | "isCheckedOut": false,
61 | "borrower": null,
62 | "dueDate": null
63 | },
64 | {
65 | "title": "The Flames of Eternal Night",
66 | "author": "Deanna Fisher",
67 | "number_of_pages": 198,
68 | "rating": 4.6,
69 | "publication_date": "1996-03-29",
70 | "summary": "Deanna Fisher's 'The Flames of Eternal Night' is a journey to the edge of the world that takes place in a forgotten metropolis. This is a a deeply moving story that keep you reading while the characters are redefining life.",
71 | "genres": [
72 | "Dystopian",
73 | "Adventure"
74 | ],
75 | "metadata": {
76 | "ISBN": "978-1-5358-6857-0",
77 | "language": "German",
78 | "edition": "Illustrated Edition"
79 | },
80 | "isCheckedOut": false,
81 | "borrower": null,
82 | "dueDate": null
83 | },
84 | {
85 | "title": "Against Legends of Brightness",
86 | "author": "Christopher Washington",
87 | "number_of_pages": 327,
88 | "rating": 1.1,
89 | "publication_date": "1975-07-18",
90 | "summary": "'Against Legends of Brightness' is Christopher Washington's brilliant novel, set in a hidden library. Exploring a battle for the future, the characters face unraveling a dark secret, resulting in an unforgettable and immersive experience.",
91 | "genres": [
92 | "Memoir",
93 | "History"
94 | ],
95 | "metadata": {
96 | "ISBN": "978-0-11-359399-6",
97 | "language": "Spanish",
98 | "edition": "Third"
99 | },
100 | "isCheckedOut": false,
101 | "borrower": null,
102 | "dueDate": null
103 | },
104 | {
105 | "title": "Beyond Waves that Changed Everything",
106 | "author": "Jeffrey Davis",
107 | "number_of_pages": 185,
108 | "rating": 4.3,
109 | "publication_date": "2020-12-03",
110 | "summary": "In the backdrop of a futuristic laboratory, 'Beyond Waves that Changed Everything' by Jeffrey Davis explores a journey of self-discovery. The characters' journey through surviving against all odds results in a thrilling and fast-paced adventure.",
111 | "genres": [
112 | "Biography",
113 | "Epic"
114 | ],
115 | "metadata": {
116 | "ISBN": "978-0-309-98069-2",
117 | "language": "Italian",
118 | "edition": "Anniversary Edition"
119 | },
120 | "isCheckedOut": true,
121 | "borrower": "James Hanson",
122 | "dueDate": "2024-11-28"
123 | },
124 | {
125 | "title": "Into Shadows of Tomorrow",
126 | "author": "Nicole Wright",
127 | "number_of_pages": 598,
128 | "rating": 3.1,
129 | "publication_date": "2020-01-28",
130 | "summary": "Set against a distant alien world, 'Into Shadows of Tomorrow' by Nicole Wright unveils an unraveling conspiracy. The story builds through forging unexpected alliances, offering a dark and brooding story.",
131 | "genres": [
132 | "Thriller",
133 | "Philosophy",
134 | "Fantasy"
135 | ],
136 | "metadata": {
137 | "ISBN": "978-1-4715-0356-6",
138 | "language": "Italian",
139 | "edition": "Anniversary Edition"
140 | },
141 | "isCheckedOut": true,
142 | "borrower": "Gregory Adams",
143 | "dueDate": "2024-12-05"
144 | },
145 | {
146 | "title": "Beyond Tides of a Lifetime",
147 | "author": "Kendra Knight",
148 | "number_of_pages": 356,
149 | "rating": 1.9,
150 | "publication_date": "1987-07-15",
151 | "summary": "'Beyond Tides of a Lifetime' is Kendra Knight's latest masterpiece set in a distant alien world. With a focus on a search for meaning, the story brings to life unraveling a dark secret, delivering a lighthearted romp.",
152 | "genres": [
153 | "Thriller",
154 | "History",
155 | "Epic",
156 | "Philosophy"
157 | ],
158 | "metadata": {
159 | "ISBN": "978-0-295-38479-5",
160 | "language": "Italian",
161 | "edition": "Second"
162 | },
163 | "isCheckedOut": true,
164 | "borrower": "Leslie Hansen",
165 | "dueDate": "2024-12-05"
166 | },
167 | {
168 | "title": "The Shadows of Eternal Night",
169 | "author": "Martin Harris",
170 | "number_of_pages": 198,
171 | "rating": 1.0,
172 | "publication_date": "2007-05-28",
173 | "summary": "Martin Harris's masterpiece, 'The Shadows of Eternal Night', is a story set in a crumbling mansion. Focusing on a struggle against darkness, the narrative reveals surviving against all odds, delivering a deeply introspective narrative.",
174 | "genres": [
175 | "Thriller"
176 | ],
177 | "metadata": {
178 | "ISBN": "978-1-301-16043-3",
179 | "language": "Chinese",
180 | "edition": "Special Release"
181 | },
182 | "isCheckedOut": false,
183 | "borrower": null,
184 | "dueDate": null
185 | },
186 | {
187 | "title": "Within the Horizon and the Last Frontier",
188 | "author": "Frank Costa",
189 | "number_of_pages": 385,
190 | "rating": 4.0,
191 | "publication_date": "2018-05-29",
192 | "summary": "In a mysterious castle, 'Within the Horizon and the Last Frontier' by Frank Costa takes readers on a journey through a search for lost treasure. The characters are challenged by reconciling a bitter feud, creating a gripping and intense psychological drama.",
193 | "genres": [
194 | "Dystopian",
195 | "Adventure",
196 | "Science Fiction",
197 | "Non-Fiction"
198 | ],
199 | "metadata": {
200 | "ISBN": "978-1-138-81334-2",
201 | "language": "Japanese",
202 | "edition": "Anniversary Edition"
203 | },
204 | "isCheckedOut": true,
205 | "borrower": "Cody Harris",
206 | "dueDate": "2024-12-18"
207 | },
208 | {
209 | "title": "The Shadows of Brightness",
210 | "author": "Sara Jones",
211 | "number_of_pages": 185,
212 | "rating": 2.9,
213 | "publication_date": "1995-10-22",
214 | "summary": "Within the world of a crumbling mansion, Sara Jones's 'The Shadows of Brightness' unravels a tale of a journey to the afterlife. Characters must confront fulfilling a forgotten prophecy, resulting in a gripping and intense psychological drama.",
215 | "genres": [
216 | "Philosophy",
217 | "Memoir",
218 | "Romance"
219 | ],
220 | "metadata": {
221 | "ISBN": "978-1-57611-473-5",
222 | "language": "English",
223 | "edition": "Second"
224 | },
225 | "isCheckedOut": false,
226 | "borrower": null,
227 | "dueDate": null
228 | },
229 | {
230 | "title": "Under Secrets and the Unknown",
231 | "author": "Ashley Villanueva",
232 | "number_of_pages": 225,
233 | "rating": 3.4,
234 | "publication_date": "1992-05-11",
235 | "summary": "Within a war-torn kingdom, 'Under Secrets and the Unknown' by Ashley Villanueva captures the spirit of a search for meaning. The story builds as characters confront escaping from relentless pursuers, offering a deeply moving story.",
236 | "genres": [
237 | "Fantasy",
238 | "Romance",
239 | "Adventure"
240 | ],
241 | "metadata": {
242 | "ISBN": "978-0-261-26454-0",
243 | "language": "Korean",
244 | "edition": "Anniversary Edition"
245 | },
246 | "isCheckedOut": false,
247 | "borrower": null,
248 | "dueDate": null
249 | },
250 | {
251 | "title": "Under Waves Through Time",
252 | "author": "Nicholas Fischer",
253 | "number_of_pages": 162,
254 | "rating": 4.0,
255 | "publication_date": "1998-06-03",
256 | "summary": "Nicholas Fischer's masterpiece, 'Under Waves Through Time', is a story set in a war-torn kingdom. Focusing on a battle for the future, the narrative reveals rebuilding a kingdom, delivering a gripping and intense psychological drama.",
257 | "genres": [
258 | "Graphic Novel"
259 | ],
260 | "metadata": {
261 | "ISBN": "978-1-74188-720-4",
262 | "language": "Italian",
263 | "edition": "Special Release"
264 | },
265 | "isCheckedOut": false,
266 | "borrower": null,
267 | "dueDate": null
268 | },
269 | {
270 | "title": "Beneath Notes of the Past",
271 | "author": "Mary Robinson",
272 | "number_of_pages": 643,
273 | "rating": 1.4,
274 | "publication_date": "1980-10-29",
275 | "summary": "Set amidst a distant alien world, 'Beneath Notes of the Past' by Mary Robinson takes on a battle against the elements, where facing their greatest fears leads to a whimsical and enchanting fable.",
276 | "genres": [
277 | "Satire"
278 | ],
279 | "metadata": {
280 | "ISBN": "978-1-65916-871-6",
281 | "language": "Chinese",
282 | "edition": "Second"
283 | },
284 | "isCheckedOut": false,
285 | "borrower": null,
286 | "dueDate": null
287 | },
288 | {
289 | "title": "Beneath Whispers that Changed Everything",
290 | "author": "Sarah Lewis",
291 | "number_of_pages": 690,
292 | "rating": 4.1,
293 | "publication_date": "2024-07-05",
294 | "summary": "In the backdrop of a futuristic laboratory, 'Beneath Whispers that Changed Everything' by Sarah Lewis explores a struggle for power. The characters' journey through confronting a powerful enemy results in a suspenseful page-turner.",
295 | "genres": [
296 | "Horror"
297 | ],
298 | "metadata": {
299 | "ISBN": "978-1-76888-482-8",
300 | "language": "Italian",
301 | "edition": "Illustrated Edition"
302 | },
303 | "isCheckedOut": true,
304 | "borrower": "Samantha Davis",
305 | "dueDate": "2024-12-02"
306 | },
307 | {
308 | "title": "In Secrets in the Dark",
309 | "author": "Anne Patrick",
310 | "number_of_pages": 521,
311 | "rating": 4.2,
312 | "publication_date": "2022-08-08",
313 | "summary": "In 'In Secrets in the Dark', Anne Patrick weaves a tale set in an isolated lighthouse, centered around a fight for survival. With unleashing a terrible force, the story becomes a heartwarming journey.",
314 | "genres": [
315 | "Non-Fiction"
316 | ],
317 | "metadata": {
318 | "ISBN": "978-0-218-35196-5",
319 | "language": "French",
320 | "edition": "Anniversary Edition"
321 | },
322 | "isCheckedOut": true,
323 | "borrower": "Charles Leach",
324 | "dueDate": "2024-11-26"
325 | },
326 | {
327 | "title": "Among Storms on the Edge",
328 | "author": "Corey Hernandez",
329 | "number_of_pages": 392,
330 | "rating": 4.3,
331 | "publication_date": "1998-08-07",
332 | "summary": "Set in an abandoned carnival, 'Among Storms on the Edge' by Corey Hernandez dives into a quest for peace. Facing defeating a powerful adversary, this is a evocative tapestry of emotions.",
333 | "genres": [
334 | "Adventure",
335 | "Philosophy"
336 | ],
337 | "metadata": {
338 | "ISBN": "978-1-65246-664-2",
339 | "language": "English",
340 | "edition": "Limited Edition"
341 | },
342 | "isCheckedOut": true,
343 | "borrower": "Ryan Reyes",
344 | "dueDate": "2024-12-09"
345 | },
346 | {
347 | "title": "Under Ghosts in the Universe",
348 | "author": "Tanya Perez",
349 | "number_of_pages": 345,
350 | "rating": 4.6,
351 | "publication_date": "2001-05-09",
352 | "summary": "'Under Ghosts in the Universe', a novel by Tanya Perez, is set in an underwater cave, where a battle for the ages unfolds. The characters grapple with rebuilding a shattered world, creating a dark and twisted tale of horror.",
353 | "genres": [
354 | "Dystopian",
355 | "Drama",
356 | "Poetry",
357 | "Comedy"
358 | ],
359 | "metadata": {
360 | "ISBN": "978-0-489-60732-7",
361 | "language": "Arabic",
362 | "edition": "Collector's Edition"
363 | },
364 | "isCheckedOut": false,
365 | "borrower": null,
366 | "dueDate": null
367 | },
368 | {
369 | "title": "From Operas and the Last Frontier",
370 | "author": "Yolanda Anderson",
371 | "number_of_pages": 412,
372 | "rating": 1.7,
373 | "publication_date": "2017-05-02",
374 | "summary": "Yolanda Anderson's 'From Operas and the Last Frontier' is a quest for vengeance that takes place in a haunted shack. This is a a gripping and intense psychological drama that keep you reading while the characters are running for their lives.",
375 | "genres": [
376 | "Drama",
377 | "Adventure",
378 | "Self-Help",
379 | "Satire"
380 | ],
381 | "metadata": {
382 | "ISBN": "978-0-8461-2621-8",
383 | "language": "Spanish",
384 | "edition": "Deluxe Edition"
385 | },
386 | "isCheckedOut": false,
387 | "borrower": null,
388 | "dueDate": null
389 | },
390 | {
391 | "title": "Within the Horizon of the Heart",
392 | "author": "Randy Cook",
393 | "number_of_pages": 171,
394 | "rating": 4.2,
395 | "publication_date": "2015-01-19",
396 | "summary": "In an abandoned carnival, 'Within the Horizon of the Heart' by Randy Cook takes readers on a journey through a battle for the future. The characters are challenged by defying a cruel god, creating a rich and evocative tapestry of words.",
397 | "genres": [
398 | "Poetry",
399 | "Biography"
400 | ],
401 | "metadata": {
402 | "ISBN": "978-0-7369-1813-8",
403 | "language": "Russian",
404 | "edition": "Deluxe Edition"
405 | },
406 | "isCheckedOut": false,
407 | "borrower": null,
408 | "dueDate": null
409 | },
410 | {
411 | "title": "The Flames in the Dark",
412 | "author": "Jason Choi",
413 | "number_of_pages": 595,
414 | "rating": 3.3,
415 | "publication_date": "2009-07-19",
416 | "summary": "'The Flames in the Dark' is Jason Choi's brilliant novel, set in a secret base in the Arctic. Exploring an exploration of forbidden knowledge, the characters face reconciling a betrayal, resulting in a lighthearted romp.",
417 | "genres": [
418 | "History",
419 | "Satire",
420 | "Drama"
421 | ],
422 | "metadata": {
423 | "ISBN": "978-0-341-02285-5",
424 | "language": "Spanish",
425 | "edition": "First"
426 | },
427 | "isCheckedOut": true,
428 | "borrower": "Kelly Green",
429 | "dueDate": "2024-12-04"
430 | },
431 | {
432 | "title": "Into Acquaintances Through Time",
433 | "author": "Cynthia Duncan",
434 | "number_of_pages": 246,
435 | "rating": 3.9,
436 | "publication_date": "2006-05-20",
437 | "summary": "Set in a haunted shack, 'Into Acquaintances Through Time' by Cynthia Duncan dives into a search for purpose. Facing defeating a powerful adversary, this is a thrilling and fast-paced adventure.",
438 | "genres": [
439 | "Science Fiction"
440 | ],
441 | "metadata": {
442 | "ISBN": "978-1-190-67288-8",
443 | "language": "German",
444 | "edition": "Deluxe Edition"
445 | },
446 | "isCheckedOut": true,
447 | "borrower": "Charles Rubio",
448 | "dueDate": "2024-12-21"
449 | },
450 | {
451 | "title": "Hidden Moons on the Edge",
452 | "author": "Kristin Bell",
453 | "number_of_pages": 725,
454 | "rating": 1.8,
455 | "publication_date": "1975-06-25",
456 | "summary": "In the backdrop of an abandoned carnival, 'Hidden Moons on the Edge' by Kristin Bell explores a quest for the truth. The characters' journey through unraveling a dark secret results in a thrilling and fast-paced adventure.",
457 | "genres": [
458 | "Graphic Novel"
459 | ],
460 | "metadata": {
461 | "ISBN": "978-1-63808-366-5",
462 | "language": "Chinese",
463 | "edition": "Anniversary Edition"
464 | },
465 | "isCheckedOut": false,
466 | "borrower": null,
467 | "dueDate": null
468 | },
469 | {
470 | "title": "Beneath Voices of Yesterday",
471 | "author": "Rodney Hopkins",
472 | "number_of_pages": 638,
473 | "rating": 1.3,
474 | "publication_date": "1985-01-15",
475 | "summary": "'Beneath Voices of Yesterday' by Rodney Hopkins is set in an oasis of art and tells a story of a journey to the stars. The protagonists face reclaiming a stolen legacy, in a tale that delivers a heartrending saga of love and loss.",
476 | "genres": [
477 | "Romance",
478 | "Thriller",
479 | "Mystery",
480 | "Young Adult"
481 | ],
482 | "metadata": {
483 | "ISBN": "978-1-65322-291-9",
484 | "language": "French",
485 | "edition": "Third"
486 | },
487 | "isCheckedOut": false,
488 | "borrower": null,
489 | "dueDate": null
490 | },
491 | {
492 | "title": "A Phantoms of the Heart",
493 | "author": "Steven Jackson",
494 | "number_of_pages": 723,
495 | "rating": 3.1,
496 | "publication_date": "1989-02-10",
497 | "summary": "Set in a remote island, 'A Phantoms of the Heart' by Steven Jackson dives into an unraveling conspiracy. Facing rekindling a lost love, this is a deep character study.",
498 | "genres": [
499 | "Non-Fiction"
500 | ],
501 | "metadata": {
502 | "ISBN": "978-1-883578-61-9",
503 | "language": "Korean",
504 | "edition": "Deluxe Edition"
505 | },
506 | "isCheckedOut": false,
507 | "borrower": null,
508 | "dueDate": null
509 | },
510 | {
511 | "title": "Beneath Waves of Yesterday",
512 | "author": "Tonya Kennedy",
513 | "number_of_pages": 153,
514 | "rating": 2.7,
515 | "publication_date": "1982-08-24",
516 | "summary": "In a hidden library, Tonya Kennedy's 'Beneath Waves of Yesterday' unravels a gripping tale of a struggle for power. The characters must navigate defying a cruel fate, creating a gripping and intense psychological drama.",
517 | "genres": [
518 | "Comedy"
519 | ],
520 | "metadata": {
521 | "ISBN": "978-0-19-555638-4",
522 | "language": "Japanese",
523 | "edition": "First"
524 | },
525 | "isCheckedOut": true,
526 | "borrower": "Carol Edwards",
527 | "dueDate": "2024-12-03"
528 | },
529 | {
530 | "title": "Among Ghosts in the Dark",
531 | "author": "Michael Rojas",
532 | "number_of_pages": 199,
533 | "rating": 2.8,
534 | "publication_date": "2013-04-23",
535 | "summary": "Set in a war-torn kingdom, 'Among Ghosts in the Dark' by Michael Rojas dives into an exploration of forbidden knowledge. Facing reviving a shattered empire, this is a thrilling and action-packed blockbuster.",
536 | "genres": [
537 | "Graphic Novel",
538 | "Mystery",
539 | "Adventure",
540 | "Dystopian"
541 | ],
542 | "metadata": {
543 | "ISBN": "978-1-255-54864-6",
544 | "language": "French",
545 | "edition": "First"
546 | },
547 | "isCheckedOut": false,
548 | "borrower": null,
549 | "dueDate": null
550 | },
551 | {
552 | "title": "Within Light on the Edge",
553 | "author": "Kathy Vincent",
554 | "number_of_pages": 166,
555 | "rating": 3.1,
556 | "publication_date": "1985-08-28",
557 | "summary": "Set against a hidden library, 'Within Light on the Edge' by Kathy Vincent unveils a search for lost treasure. The story builds through defending a fragile hope, offering a masterful blend of tension and hope.",
558 | "genres": [
559 | "Self-Help"
560 | ],
561 | "metadata": {
562 | "ISBN": "978-0-9823322-8-3",
563 | "language": "Japanese",
564 | "edition": "Deluxe Edition"
565 | },
566 | "isCheckedOut": false,
567 | "borrower": null,
568 | "dueDate": null
569 | },
570 | {
571 | "title": "Under Storms of Lost Souls",
572 | "author": "Tammy Ramos",
573 | "number_of_pages": 696,
574 | "rating": 5.0,
575 | "publication_date": "1988-03-26",
576 | "summary": "Within a sprawling museum, 'Under Storms of Lost Souls' by Tammy Ramos captures the spirit of a quest for the truth. The story builds as characters confront facing their greatest fears, offering a whimsical and enchanting fable.",
577 | "genres": [
578 | "Poetry",
579 | "Historical Fiction",
580 | "Graphic Novel",
581 | "Satire"
582 | ],
583 | "metadata": {
584 | "ISBN": "978-1-907161-02-5",
585 | "language": "Japanese",
586 | "edition": "Collector's Edition"
587 | },
588 | "isCheckedOut": false,
589 | "borrower": null,
590 | "dueDate": null
591 | },
592 | {
593 | "title": "Against Light of Eternal Night",
594 | "author": "Jennifer Ray",
595 | "number_of_pages": 655,
596 | "rating": 4.8,
597 | "publication_date": "1999-07-08",
598 | "summary": "'Against Light of Eternal Night', a novel by Jennifer Ray, is set in a mysterious castle, where a fight for love unfolds. The characters grapple with fulfilling a forgotten destiny, creating a whimsical and enchanting fable.",
599 | "genres": [
600 | "Romance"
601 | ],
602 | "metadata": {
603 | "ISBN": "978-0-213-40965-4",
604 | "language": "Portuguese",
605 | "edition": "Collector's Edition"
606 | },
607 | "isCheckedOut": true,
608 | "borrower": "Benjamin Franklin",
609 | "dueDate": "2024-12-12"
610 | },
611 | {
612 | "title": "Under Operas of Tomorrow",
613 | "author": "Brittany Park",
614 | "number_of_pages": 435,
615 | "rating": 2.8,
616 | "publication_date": "1988-06-21",
617 | "summary": "'Under Operas of Tomorrow', written by Brittany Park, is a story set in a mysterious castle. Delving into a battle for the future, the characters tackle unleashing a terrible weapon, creating a rich and evocative tapestry of words.",
618 | "genres": [
619 | "Romance",
620 | "Science Fiction",
621 | "Fantasy",
622 | "Self-Help"
623 | ],
624 | "metadata": {
625 | "ISBN": "978-0-524-06824-3",
626 | "language": "Korean",
627 | "edition": "Deluxe Edition"
628 | },
629 | "isCheckedOut": true,
630 | "borrower": "Elizabeth Atkinson",
631 | "dueDate": "2024-12-15"
632 | },
633 | {
634 | "title": "A Operas of a Lifetime",
635 | "author": "Jonathan Solis",
636 | "number_of_pages": 703,
637 | "rating": 3.1,
638 | "publication_date": "2021-02-16",
639 | "summary": "In Jonathan Solis's 'A Operas of a Lifetime', set in a mysterious castle, readers explore a quest for immortality. Faced with defending a dream, the story delivers a poetic and haunting story.",
640 | "genres": [
641 | "Dystopian",
642 | "History"
643 | ],
644 | "metadata": {
645 | "ISBN": "978-1-124-33296-3",
646 | "language": "Italian",
647 | "edition": "Second"
648 | },
649 | "isCheckedOut": false,
650 | "borrower": null,
651 | "dueDate": null
652 | },
653 | {
654 | "title": "Under Echoes of the Heart",
655 | "author": "Kevin White",
656 | "number_of_pages": 546,
657 | "rating": 2.9,
658 | "publication_date": "1975-03-24",
659 | "summary": "In an abandoned carnival, 'Under Echoes of the Heart' by Kevin White takes readers on a journey through an unraveling conspiracy. The characters are challenged by defending a fragile hope, creating a poignant and bittersweet reflection.",
660 | "genres": [
661 | "Historical Fiction",
662 | "Drama",
663 | "Memoir",
664 | "History"
665 | ],
666 | "metadata": {
667 | "ISBN": "978-1-75598-068-7",
668 | "language": "Italian",
669 | "edition": "Deluxe Edition"
670 | },
671 | "isCheckedOut": false,
672 | "borrower": null,
673 | "dueDate": null
674 | },
675 | {
676 | "title": "Through Darkness of Brightness",
677 | "author": "Darrell Vargas",
678 | "number_of_pages": 740,
679 | "rating": 4.6,
680 | "publication_date": "1997-10-22",
681 | "summary": "Set amidst a crumbling mansion, 'Through Darkness of Brightness' by Darrell Vargas takes on a struggle against destiny, where finding a way home leads to a gripping tale of suspense.",
682 | "genres": [
683 | "Epic",
684 | "Biography",
685 | "Thriller",
686 | "Memoir"
687 | ],
688 | "metadata": {
689 | "ISBN": "978-0-06-985516-2",
690 | "language": "Chinese",
691 | "edition": "Anniversary Edition"
692 | },
693 | "isCheckedOut": true,
694 | "borrower": "Brian Lee",
695 | "dueDate": "2024-12-10"
696 | },
697 | {
698 | "title": "Under Moments Through Time",
699 | "author": "Lawrence Kirby",
700 | "number_of_pages": 337,
701 | "rating": 1.6,
702 | "publication_date": "1999-10-22",
703 | "summary": "In Lawrence Kirby's 'Under Moments Through Time', set in an underwater cave, readers explore a forbidden love affair. Faced with unleashing a terrible curse, the story delivers a rich and immersive world.",
704 | "genres": [
705 | "Historical Fiction",
706 | "Self-Help"
707 | ],
708 | "metadata": {
709 | "ISBN": "978-0-9879277-1-2",
710 | "language": "German",
711 | "edition": "First"
712 | },
713 | "isCheckedOut": true,
714 | "borrower": "Penny Hayes",
715 | "dueDate": "2024-12-19"
716 | },
717 | {
718 | "title": "Under Friendships and the Journey",
719 | "author": "Edward Rojas",
720 | "number_of_pages": 344,
721 | "rating": 1.5,
722 | "publication_date": "1991-11-05",
723 | "summary": "Set against an isolated lighthouse, 'Under Friendships and the Journey' by Edward Rojas unveils a battle for freedom. The story builds through unlocking a hidden power, offering a dark and twisted tale of horror.",
724 | "genres": [
725 | "Romance"
726 | ],
727 | "metadata": {
728 | "ISBN": "978-1-84463-203-9",
729 | "language": "Korean",
730 | "edition": "Collector's Edition"
731 | },
732 | "isCheckedOut": false,
733 | "borrower": null,
734 | "dueDate": null
735 | },
736 | {
737 | "title": "Within Silence and the Journey",
738 | "author": "Ashley Oliver",
739 | "number_of_pages": 420,
740 | "rating": 2.5,
741 | "publication_date": "2022-02-17",
742 | "summary": "Within the world of a mysterious castle, Ashley Oliver's 'Within Silence and the Journey' unravels a tale of a struggle for power. Characters must confront facing their greatest fears, resulting in a evocative tapestry of emotions.",
743 | "genres": [
744 | "Self-Help",
745 | "Graphic Novel",
746 | "Philosophy"
747 | ],
748 | "metadata": {
749 | "ISBN": "978-1-228-26808-3",
750 | "language": "Korean",
751 | "edition": "First"
752 | },
753 | "isCheckedOut": false,
754 | "borrower": null,
755 | "dueDate": null
756 | },
757 | {
758 | "title": "Into Tides Under the Sky",
759 | "author": "Rachel Jacobson",
760 | "number_of_pages": 223,
761 | "rating": 1.2,
762 | "publication_date": "2010-03-13",
763 | "summary": "Set in a magical forest, Rachel Jacobson's 'Into Tides Under the Sky' captures the essence of an unraveling conspiracy, with characters struggling through making impossible sacrifices. a philosophical meditation awaits readers.",
764 | "genres": [
765 | "Satire",
766 | "Young Adult",
767 | "Philosophy",
768 | "Poetry"
769 | ],
770 | "metadata": {
771 | "ISBN": "978-0-513-57979-8",
772 | "language": "Italian",
773 | "edition": "Anniversary Edition"
774 | },
775 | "isCheckedOut": false,
776 | "borrower": null,
777 | "dueDate": null
778 | },
779 | {
780 | "title": "Beyond Waves in the Universe",
781 | "author": "Nicholas Snyder",
782 | "number_of_pages": 717,
783 | "rating": 1.9,
784 | "publication_date": "2002-06-15",
785 | "summary": "'Beyond Waves in the Universe' by Nicholas Snyder unfolds in an ancient underwater city, where a journey to the edge of the world sets the stage. Characters navigate defending a fragile hope in an inventive flight of fancy.",
786 | "genres": [
787 | "Science Fiction",
788 | "Self-Help",
789 | "Mystery"
790 | ],
791 | "metadata": {
792 | "ISBN": "978-1-4879-8163-1",
793 | "language": "Chinese",
794 | "edition": "Limited Edition"
795 | },
796 | "isCheckedOut": false,
797 | "borrower": null,
798 | "dueDate": null
799 | },
800 | {
801 | "title": "Beneath Operas of Lost Souls",
802 | "author": "Benjamin Patterson",
803 | "number_of_pages": 724,
804 | "rating": 1.8,
805 | "publication_date": "1975-02-15",
806 | "summary": "Set amidst a hidden library, 'Beneath Operas of Lost Souls' by Benjamin Patterson takes on a battle for the soul, where fulfilling a forgotten prophecy leads to a deeply introspective narrative.",
807 | "genres": [
808 | "Poetry",
809 | "Satire"
810 | ],
811 | "metadata": {
812 | "ISBN": "978-0-13-465453-9",
813 | "language": "Italian",
814 | "edition": "Anniversary Edition"
815 | },
816 | "isCheckedOut": true,
817 | "borrower": "Steve Fernandez",
818 | "dueDate": "2024-12-13"
819 | },
820 | {
821 | "title": "Through Whispers on the Edge",
822 | "author": "Michael Olson",
823 | "number_of_pages": 284,
824 | "rating": 1.9,
825 | "publication_date": "1981-03-16",
826 | "summary": "Within the world of a futuristic laboratory, Michael Olson's 'Through Whispers on the Edge' unravels a tale of a fight for honor. Characters must confront rekindling a lost love, resulting in a dark and twisted tale of horror.",
827 | "genres": [
828 | "Self-Help",
829 | "Romance"
830 | ],
831 | "metadata": {
832 | "ISBN": "978-0-934153-59-1",
833 | "language": "Japanese",
834 | "edition": "Limited Edition"
835 | },
836 | "isCheckedOut": true,
837 | "borrower": "Kathleen Fisher",
838 | "dueDate": "2024-12-10"
839 | },
840 | {
841 | "title": "Across Silence and the Ancient Prophecy",
842 | "author": "Eric Fitzgerald",
843 | "number_of_pages": 709,
844 | "rating": 1.3,
845 | "publication_date": "1983-08-21",
846 | "summary": "In a barren wasteland, 'Across Silence and the Ancient Prophecy' by Eric Fitzgerald takes readers on a journey through a journey to the afterlife. The characters are challenged by salvaging a shattered trust, creating an inventive flight of fancy.",
847 | "genres": [
848 | "Science Fiction",
849 | "Romance",
850 | "Young Adult",
851 | "Poetry"
852 | ],
853 | "metadata": {
854 | "ISBN": "978-1-06-255199-0",
855 | "language": "Russian",
856 | "edition": "Collector's Edition"
857 | },
858 | "isCheckedOut": false,
859 | "borrower": null,
860 | "dueDate": null
861 | },
862 | {
863 | "title": "In Darkness of Brightness",
864 | "author": "Nichole Carlson",
865 | "number_of_pages": 433,
866 | "rating": 3.2,
867 | "publication_date": "1983-07-29",
868 | "summary": "Amidst a sprawling metropolis, 'In Darkness of Brightness' by Nichole Carlson delves into a battle against the elements. The characters must overcome rebuilding a kingdom, making this a poignant and bittersweet reflection.",
869 | "genres": [
870 | "Graphic Novel",
871 | "Poetry",
872 | "Epic"
873 | ],
874 | "metadata": {
875 | "ISBN": "978-0-592-30845-6",
876 | "language": "German",
877 | "edition": "Deluxe Edition"
878 | },
879 | "isCheckedOut": true,
880 | "borrower": "Robert Trevino",
881 | "dueDate": "2024-11-26"
882 | },
883 | {
884 | "title": "A Dreams of the Landscape",
885 | "author": "Jennifer Richardson",
886 | "number_of_pages": 779,
887 | "rating": 1.5,
888 | "publication_date": "1992-07-18",
889 | "summary": "In a desert wasteland, Jennifer Richardson's 'A Dreams of the Landscape' unravels a gripping tale of a quest for peace. The characters must navigate fulfilling a forgotten promise, creating a dark and brooding story.",
890 | "genres": [
891 | "Epic",
892 | "Young Adult",
893 | "Historical Fiction",
894 | "Romance"
895 | ],
896 | "metadata": {
897 | "ISBN": "978-0-303-61952-9",
898 | "language": "French",
899 | "edition": "Second"
900 | },
901 | "isCheckedOut": false,
902 | "borrower": null,
903 | "dueDate": null
904 | },
905 | {
906 | "title": "In Echoes in the Dark",
907 | "author": "Rhonda Barton",
908 | "number_of_pages": 578,
909 | "rating": 2.2,
910 | "publication_date": "2000-11-05",
911 | "summary": "In the backdrop of a lost temple, 'In Echoes in the Dark' by Rhonda Barton explores a fight for honor. The characters' journey through unleashing a terrible curse results in a poetic and haunting story.",
912 | "genres": [
913 | "Comedy",
914 | "Epic"
915 | ],
916 | "metadata": {
917 | "ISBN": "978-0-236-54474-5",
918 | "language": "Russian",
919 | "edition": "Anniversary Edition"
920 | },
921 | "isCheckedOut": false,
922 | "borrower": null,
923 | "dueDate": null
924 | },
925 | {
926 | "title": "The Silence of Broken Promises",
927 | "author": "Jason Kelly",
928 | "number_of_pages": 737,
929 | "rating": 3.7,
930 | "publication_date": "2013-07-20",
931 | "summary": "Jason Kelly's masterpiece, 'The Silence of Broken Promises', is a story set in an isolated lighthouse. Focusing on a struggle against tyranny, the narrative reveals confronting a powerful enemy, delivering a thrilling and action-packed blockbuster.",
932 | "genres": [
933 | "Drama",
934 | "Memoir",
935 | "Science Fiction",
936 | "Biography"
937 | ],
938 | "metadata": {
939 | "ISBN": "978-0-7559-3465-2",
940 | "language": "Arabic",
941 | "edition": "Special Release"
942 | },
943 | "isCheckedOut": true,
944 | "borrower": "Matthew Brown",
945 | "dueDate": "2024-12-16"
946 | },
947 | {
948 | "title": "From the Wind and the Journey",
949 | "author": "Barbara Fisher",
950 | "number_of_pages": 611,
951 | "rating": 2.4,
952 | "publication_date": "2002-12-17",
953 | "summary": "In 'From the Wind and the Journey', Barbara Fisher crafts a narrative set in a war-torn kingdom, focusing on a journey to the afterlife. With surviving against all odds, this book is a dark and brooding story.",
954 | "genres": [
955 | "History",
956 | "Young Adult"
957 | ],
958 | "metadata": {
959 | "ISBN": "978-1-996786-98-7",
960 | "language": "German",
961 | "edition": "Limited Edition"
962 | },
963 | "isCheckedOut": true,
964 | "borrower": "Rebecca Wagner",
965 | "dueDate": "2024-12-02"
966 | },
967 | {
968 | "title": "From Moments of Eternal Night",
969 | "author": "Monica Dixon",
970 | "number_of_pages": 404,
971 | "rating": 2.3,
972 | "publication_date": "1985-02-13",
973 | "summary": "Set in a hidden library, Monica Dixon's 'From Moments of Eternal Night' captures the essence of a journey through time, with characters struggling through avenging a terrible wrong. a thought-provoking exploration of the human condition awaits readers.",
974 | "genres": [
975 | "Thriller",
976 | "Science Fiction"
977 | ],
978 | "metadata": {
979 | "ISBN": "978-1-174-78336-4",
980 | "language": "Spanish",
981 | "edition": "Third"
982 | },
983 | "isCheckedOut": true,
984 | "borrower": "Thomas Kramer",
985 | "dueDate": "2024-12-03"
986 | },
987 | {
988 | "title": "A Legends Through Time",
989 | "author": "Colleen Johns",
990 | "number_of_pages": 621,
991 | "rating": 2.3,
992 | "publication_date": "1994-01-06",
993 | "summary": "'A Legends Through Time' is Colleen Johns's brilliant novel, set in a haunted shack. Exploring a journey of self-discovery, the characters face finding a way home, resulting in a whimsical and enchanting fable.",
994 | "genres": [
995 | "Horror",
996 | "Philosophy",
997 | "Mystery"
998 | ],
999 | "metadata": {
1000 | "ISBN": "978-0-691-69112-1",
1001 | "language": "French",
1002 | "edition": "Limited Edition"
1003 | },
1004 | "isCheckedOut": false,
1005 | "borrower": null,
1006 | "dueDate": null
1007 | },
1008 | {
1009 | "title": "In Paths of the Past",
1010 | "author": "Antonio Juarez",
1011 | "number_of_pages": 517,
1012 | "rating": 1.2,
1013 | "publication_date": "2008-04-08",
1014 | "summary": "In the backdrop of a moonlit battlefield, 'In Paths of the Past' by Antonio Juarez explores a quest for revenge. The characters' journey through reawakening a lost memory results in a thrilling and action-packed blockbuster.",
1015 | "genres": [
1016 | "Self-Help",
1017 | "Horror"
1018 | ],
1019 | "metadata": {
1020 | "ISBN": "978-0-323-81383-9",
1021 | "language": "Italian",
1022 | "edition": "First"
1023 | },
1024 | "isCheckedOut": false,
1025 | "borrower": null,
1026 | "dueDate": null
1027 | },
1028 | {
1029 | "title": "Among Legends and the Last Frontier",
1030 | "author": "Randy Ellis",
1031 | "number_of_pages": 756,
1032 | "rating": 3.9,
1033 | "publication_date": "1986-11-16",
1034 | "summary": "'Among Legends and the Last Frontier' is Randy Ellis's brilliant novel, set in a crumbling mansion. Exploring a fight against fate, the characters face unlocking a hidden power, resulting in a deeply introspective narrative.",
1035 | "genres": [
1036 | "Romance",
1037 | "Dystopian",
1038 | "Self-Help",
1039 | "Horror"
1040 | ],
1041 | "metadata": {
1042 | "ISBN": "978-1-55510-079-7",
1043 | "language": "Italian",
1044 | "edition": "Illustrated Edition"
1045 | },
1046 | "isCheckedOut": false,
1047 | "borrower": null,
1048 | "dueDate": null
1049 | },
1050 | {
1051 | "title": "Into Tides of a Lifetime",
1052 | "author": "Jon Hill",
1053 | "number_of_pages": 716,
1054 | "rating": 1.3,
1055 | "publication_date": "2001-09-11",
1056 | "summary": "'Into Tides of a Lifetime', a novel by Jon Hill, is set in an ancient underwater city, where a fight against fate unfolds. The characters grapple with defying a cruel fate, creating a gripping tale of suspense.",
1057 | "genres": [
1058 | "Dystopian"
1059 | ],
1060 | "metadata": {
1061 | "ISBN": "978-0-09-408237-3",
1062 | "language": "Spanish",
1063 | "edition": "Deluxe Edition"
1064 | },
1065 | "isCheckedOut": false,
1066 | "borrower": null,
1067 | "dueDate": null
1068 | },
1069 | {
1070 | "title": "Hidden Paths of Eternal Night",
1071 | "author": "Samantha Norris",
1072 | "number_of_pages": 579,
1073 | "rating": 3.5,
1074 | "publication_date": "2001-03-20",
1075 | "summary": "In 'Hidden Paths of Eternal Night', Samantha Norris crafts a narrative set in a barren wasteland, focusing on a struggle for power. With defying a tyrant, this book is a suspenseful page-turner.",
1076 | "genres": [
1077 | "Fantasy",
1078 | "Science Fiction"
1079 | ],
1080 | "metadata": {
1081 | "ISBN": "978-0-18-203978-4",
1082 | "language": "Arabic",
1083 | "edition": "Special Release"
1084 | },
1085 | "isCheckedOut": true,
1086 | "borrower": "Bradley Castaneda",
1087 | "dueDate": "2024-12-10"
1088 | },
1089 | {
1090 | "title": "Within Friendships of the Past",
1091 | "author": "Patrick Harper",
1092 | "number_of_pages": 315,
1093 | "rating": 2.6,
1094 | "publication_date": "1994-01-24",
1095 | "summary": "In Patrick Harper's 'Within Friendships of the Past', the setting of a secret base in the Arctic becomes a stage for a journey of self-discovery. The narrative weaves through unleashing a terrible weapon, offering a chilling and atmospheric tale.",
1096 | "genres": [
1097 | "Romance",
1098 | "Fantasy",
1099 | "Dystopian",
1100 | "Drama"
1101 | ],
1102 | "metadata": {
1103 | "ISBN": "978-1-05-715850-0",
1104 | "language": "English",
1105 | "edition": "Anniversary Edition"
1106 | },
1107 | "isCheckedOut": false,
1108 | "borrower": null,
1109 | "dueDate": null
1110 | },
1111 | {
1112 | "title": "Into Moments of Broken Promises",
1113 | "author": "Gerald Hill",
1114 | "number_of_pages": 617,
1115 | "rating": 4.0,
1116 | "publication_date": "2002-06-25",
1117 | "summary": "'Into Moments of Broken Promises', written by Gerald Hill, is a story set in a desert wasteland. Delving into a quest for peace, the characters tackle salvaging a shattered trust, creating a tour de force.",
1118 | "genres": [
1119 | "Comedy"
1120 | ],
1121 | "metadata": {
1122 | "ISBN": "978-0-517-99501-3",
1123 | "language": "Chinese",
1124 | "edition": "Second"
1125 | },
1126 | "isCheckedOut": false,
1127 | "borrower": null,
1128 | "dueDate": null
1129 | },
1130 | {
1131 | "title": "Beneath Moments in the Universe",
1132 | "author": "Hector Ramirez",
1133 | "number_of_pages": 255,
1134 | "rating": 1.1,
1135 | "publication_date": "1977-10-04",
1136 | "summary": "Hector Ramirez's masterpiece, 'Beneath Moments in the Universe', is a story set in an oasis of art. Focusing on a search for inner peace, the narrative reveals reclaiming a stolen legacy, delivering a rich and immersive world.",
1137 | "genres": [
1138 | "Satire",
1139 | "Drama"
1140 | ],
1141 | "metadata": {
1142 | "ISBN": "978-0-624-45317-8",
1143 | "language": "Spanish",
1144 | "edition": "Illustrated Edition"
1145 | },
1146 | "isCheckedOut": true,
1147 | "borrower": "Jason Blake",
1148 | "dueDate": "2024-12-20"
1149 | },
1150 | {
1151 | "title": "Hidden Notes of the Future",
1152 | "author": "Christina Hernandez",
1153 | "number_of_pages": 441,
1154 | "rating": 3.1,
1155 | "publication_date": "1991-03-03",
1156 | "summary": "Set in an underwater cave, Christina Hernandez's 'Hidden Notes of the Future' captures the essence of a battle for the ages, with characters struggling through unleashing a terrible weapon. a whimsical and enchanting fable awaits readers.",
1157 | "genres": [
1158 | "Comedy",
1159 | "Graphic Novel"
1160 | ],
1161 | "metadata": {
1162 | "ISBN": "978-1-284-81716-4",
1163 | "language": "French",
1164 | "edition": "Special Release"
1165 | },
1166 | "isCheckedOut": false,
1167 | "borrower": null,
1168 | "dueDate": null
1169 | },
1170 | {
1171 | "title": "Beneath Light on the Edge",
1172 | "author": "Heather Morales",
1173 | "number_of_pages": 698,
1174 | "rating": 1.5,
1175 | "publication_date": "2003-04-27",
1176 | "summary": "Amidst a small, quiet village, 'Beneath Light on the Edge' by Heather Morales delves into a battle for freedom. The characters must overcome salvaging a shattered trust, making this a deeply introspective narrative.",
1177 | "genres": [
1178 | "Dystopian"
1179 | ],
1180 | "metadata": {
1181 | "ISBN": "978-1-5295-8182-9",
1182 | "language": "Japanese",
1183 | "edition": "Limited Edition"
1184 | },
1185 | "isCheckedOut": true,
1186 | "borrower": "Caroline White",
1187 | "dueDate": "2024-12-09"
1188 | },
1189 | {
1190 | "title": "Among Mirrors of Eternal Night",
1191 | "author": "Sarah Olson",
1192 | "number_of_pages": 694,
1193 | "rating": 3.5,
1194 | "publication_date": "2003-06-14",
1195 | "summary": "In 'Among Mirrors of Eternal Night', Sarah Olson sets a story of a quest for redemption against the vivid backdrop of a lush garden. The characters' struggles with rediscovering a lost friendship result in a deeply moving story.",
1196 | "genres": [
1197 | "Historical Fiction",
1198 | "Thriller",
1199 | "Graphic Novel"
1200 | ],
1201 | "metadata": {
1202 | "ISBN": "978-0-543-47061-4",
1203 | "language": "Portuguese",
1204 | "edition": "Second"
1205 | },
1206 | "isCheckedOut": false,
1207 | "borrower": null,
1208 | "dueDate": null
1209 | },
1210 | {
1211 | "title": "Within Silence of the Past",
1212 | "author": "Victoria Holt",
1213 | "number_of_pages": 591,
1214 | "rating": 1.0,
1215 | "publication_date": "1981-11-13",
1216 | "summary": "In Victoria Holt's 'Within Silence of the Past', set in an isolated lighthouse, readers explore a struggle against destiny. Faced with reconciling a bitter rivalry, the story delivers a masterful blend of tension and hope.",
1217 | "genres": [
1218 | "Non-Fiction",
1219 | "Fantasy",
1220 | "Historical Fiction",
1221 | "Tragedy"
1222 | ],
1223 | "metadata": {
1224 | "ISBN": "978-1-04-230685-5",
1225 | "language": "Arabic",
1226 | "edition": "Second"
1227 | },
1228 | "isCheckedOut": false,
1229 | "borrower": null,
1230 | "dueDate": null
1231 | },
1232 | {
1233 | "title": "Across Silence on the Edge",
1234 | "author": "Lisa Martinez",
1235 | "number_of_pages": 372,
1236 | "rating": 2.0,
1237 | "publication_date": "1985-01-20",
1238 | "summary": "Set amidst a small, quiet village, 'Across Silence on the Edge' by Lisa Martinez takes on a fight against fate, where unleashing a terrible curse leads to a tour de force.",
1239 | "genres": [
1240 | "Graphic Novel",
1241 | "Epic",
1242 | "Self-Help"
1243 | ],
1244 | "metadata": {
1245 | "ISBN": "978-0-06-126190-9",
1246 | "language": "Korean",
1247 | "edition": "Second"
1248 | },
1249 | "isCheckedOut": true,
1250 | "borrower": "Debbie Thornton",
1251 | "dueDate": "2024-11-25"
1252 | },
1253 | {
1254 | "title": "From Ghosts and the Journey",
1255 | "author": "Toni Figueroa",
1256 | "number_of_pages": 303,
1257 | "rating": 4.0,
1258 | "publication_date": "1975-12-22",
1259 | "summary": "'From Ghosts and the Journey' by Toni Figueroa immerses readers in a desert wasteland, where a clash of cultures collides with escaping from relentless pursuers, delivering a thrilling and fast-paced adventure.",
1260 | "genres": [
1261 | "Romance",
1262 | "Philosophy",
1263 | "Self-Help",
1264 | "Satire"
1265 | ],
1266 | "metadata": {
1267 | "ISBN": "978-0-939649-88-4",
1268 | "language": "French",
1269 | "edition": "Second"
1270 | },
1271 | "isCheckedOut": false,
1272 | "borrower": null,
1273 | "dueDate": null
1274 | },
1275 | {
1276 | "title": "Among Moons of the Landscape",
1277 | "author": "Phillip Garner",
1278 | "number_of_pages": 760,
1279 | "rating": 4.6,
1280 | "publication_date": "2007-11-27",
1281 | "summary": "In a lush garden, Phillip Garner's 'Among Moons of the Landscape' tells a tale of a battle for freedom. The narrative unfolds as the characters navigate unlocking a hidden power, offering a lighthearted romp.",
1282 | "genres": [
1283 | "Graphic Novel",
1284 | "Horror",
1285 | "Poetry",
1286 | "Dystopian"
1287 | ],
1288 | "metadata": {
1289 | "ISBN": "978-0-01-177499-2",
1290 | "language": "Japanese",
1291 | "edition": "Illustrated Edition"
1292 | },
1293 | "isCheckedOut": true,
1294 | "borrower": "Richard Ford",
1295 | "dueDate": "2024-11-29"
1296 | },
1297 | {
1298 | "title": "From Acquaintances and the Ancient Prophecy",
1299 | "author": "John Williams",
1300 | "number_of_pages": 622,
1301 | "rating": 4.2,
1302 | "publication_date": "2008-05-21",
1303 | "summary": "'From Acquaintances and the Ancient Prophecy' by John Williams immerses readers in a lost temple, where a battle for the future collides with reviving a shattered empire, delivering an unforgettable and immersive experience.",
1304 | "genres": [
1305 | "Non-Fiction"
1306 | ],
1307 | "metadata": {
1308 | "ISBN": "978-1-888696-43-1",
1309 | "language": "Arabic",
1310 | "edition": "Deluxe Edition"
1311 | },
1312 | "isCheckedOut": true,
1313 | "borrower": "Steven Blankenship",
1314 | "dueDate": "2024-12-12"
1315 | },
1316 | {
1317 | "title": "Beneath Mirrors of Tomorrow",
1318 | "author": "Dana Lopez",
1319 | "number_of_pages": 594,
1320 | "rating": 4.4,
1321 | "publication_date": "2013-04-02",
1322 | "summary": "Dana Lopez's masterpiece, 'Beneath Mirrors of Tomorrow', is a story set in a desert wasteland. Focusing on a search for answers, the narrative reveals questioning their identity, delivering a poignant and bittersweet reflection.",
1323 | "genres": [
1324 | "Comedy",
1325 | "Horror",
1326 | "Poetry"
1327 | ],
1328 | "metadata": {
1329 | "ISBN": "978-1-5493-1582-4",
1330 | "language": "Arabic",
1331 | "edition": "Second"
1332 | },
1333 | "isCheckedOut": true,
1334 | "borrower": "Anna Sharp",
1335 | "dueDate": "2024-11-26"
1336 | },
1337 | {
1338 | "title": "The Stars of Tomorrow",
1339 | "author": "Julie Wright",
1340 | "number_of_pages": 584,
1341 | "rating": 1.7,
1342 | "publication_date": "1982-01-21",
1343 | "summary": "In Julie Wright's 'The Stars of Tomorrow', the setting of a haunted shack becomes a stage for a search for purpose. The narrative weaves through defending a dream, offering a heartrending saga of love and loss.",
1344 | "genres": [
1345 | "Mystery"
1346 | ],
1347 | "metadata": {
1348 | "ISBN": "978-0-903964-68-5",
1349 | "language": "Russian",
1350 | "edition": "Illustrated Edition"
1351 | },
1352 | "isCheckedOut": false,
1353 | "borrower": null,
1354 | "dueDate": null
1355 | },
1356 | {
1357 | "title": "The Echoes of the Heart",
1358 | "author": "Miguel Wagner",
1359 | "number_of_pages": 314,
1360 | "rating": 2.5,
1361 | "publication_date": "1979-06-07",
1362 | "summary": "Within a sprawling museum, 'The Echoes of the Heart' by Miguel Wagner captures the spirit of a forbidden love affair. The story builds as characters confront rekindling a lost passion, offering a whimsical and enchanting fable.",
1363 | "genres": [
1364 | "Adventure",
1365 | "Fantasy",
1366 | "Comedy",
1367 | "Science Fiction"
1368 | ],
1369 | "metadata": {
1370 | "ISBN": "978-1-69653-095-8",
1371 | "language": "Portuguese",
1372 | "edition": "Limited Edition"
1373 | },
1374 | "isCheckedOut": true,
1375 | "borrower": "Priscilla Joseph",
1376 | "dueDate": "2024-12-01"
1377 | },
1378 | {
1379 | "title": "Across the Wind in the Dark",
1380 | "author": "Zachary Marshall",
1381 | "number_of_pages": 777,
1382 | "rating": 4.6,
1383 | "publication_date": "1990-02-11",
1384 | "summary": "Amidst a lost temple, 'Across the Wind in the Dark' by Zachary Marshall delves into a journey of self-discovery. The characters must overcome rebuilding lost trust, making this a dazzling epic of wonder and imagination.",
1385 | "genres": [
1386 | "Historical Fiction"
1387 | ],
1388 | "metadata": {
1389 | "ISBN": "978-0-06-738327-8",
1390 | "language": "Chinese",
1391 | "edition": "Second"
1392 | },
1393 | "isCheckedOut": false,
1394 | "borrower": null,
1395 | "dueDate": null
1396 | },
1397 | {
1398 | "title": "Hidden Darkness that Changed Everything",
1399 | "author": "Michael Rocha",
1400 | "number_of_pages": 349,
1401 | "rating": 5.0,
1402 | "publication_date": "2014-08-14",
1403 | "summary": "Set in a forgotten metropolis, 'Hidden Darkness that Changed Everything' by Michael Rocha dives into a struggle against darkness. Facing facing their greatest fears, this is a light and breezy beach read.",
1404 | "genres": [
1405 | "Mystery",
1406 | "Fantasy",
1407 | "Biography"
1408 | ],
1409 | "metadata": {
1410 | "ISBN": "978-0-308-04093-9",
1411 | "language": "German",
1412 | "edition": "Deluxe Edition"
1413 | },
1414 | "isCheckedOut": true,
1415 | "borrower": "John Klein MD",
1416 | "dueDate": "2024-11-25"
1417 | },
1418 | {
1419 | "title": "In Legends of the Future",
1420 | "author": "Amber May",
1421 | "number_of_pages": 483,
1422 | "rating": 1.7,
1423 | "publication_date": "2005-09-24",
1424 | "summary": "In 'In Legends of the Future', Amber May sets a story of an exploration of forbidden knowledge against the vivid backdrop of an oasis of art. The characters' struggles with questioning their identity result in a thrilling and fast-paced adventure.",
1425 | "genres": [
1426 | "Non-Fiction",
1427 | "Fantasy",
1428 | "Satire",
1429 | "Mystery"
1430 | ],
1431 | "metadata": {
1432 | "ISBN": "978-0-06-364971-2",
1433 | "language": "Russian",
1434 | "edition": "Anniversary Edition"
1435 | },
1436 | "isCheckedOut": true,
1437 | "borrower": "Alicia Torres",
1438 | "dueDate": "2024-12-17"
1439 | },
1440 | {
1441 | "title": "Hidden Echoes of a Lifetime",
1442 | "author": "Joseph Dominguez",
1443 | "number_of_pages": 275,
1444 | "rating": 2.8,
1445 | "publication_date": "2024-01-19",
1446 | "summary": "In 'Hidden Echoes of a Lifetime', Joseph Dominguez sets a story of a journey of self-discovery against the vivid backdrop of a distant alien world. The characters' struggles with finding a way home result in a rich and evocative tapestry of words.",
1447 | "genres": [
1448 | "Philosophy",
1449 | "Young Adult",
1450 | "Mystery",
1451 | "Biography"
1452 | ],
1453 | "metadata": {
1454 | "ISBN": "978-1-895170-83-2",
1455 | "language": "German",
1456 | "edition": "Deluxe Edition"
1457 | },
1458 | "isCheckedOut": false,
1459 | "borrower": null,
1460 | "dueDate": null
1461 | },
1462 | {
1463 | "title": "Through Tides of Yesterday",
1464 | "author": "Travis Murphy",
1465 | "number_of_pages": 535,
1466 | "rating": 2.6,
1467 | "publication_date": "1996-08-26",
1468 | "summary": "In 'Through Tides of Yesterday', Travis Murphy weaves a tale set in a haunted shack, centered around a clash of cultures. With fulfilling a forgotten destiny, the story becomes a deeply moving story.",
1469 | "genres": [
1470 | "Satire"
1471 | ],
1472 | "metadata": {
1473 | "ISBN": "978-0-237-35730-6",
1474 | "language": "Korean",
1475 | "edition": "Illustrated Edition"
1476 | },
1477 | "isCheckedOut": false,
1478 | "borrower": null,
1479 | "dueDate": null
1480 | },
1481 | {
1482 | "title": "In Legends of Lost Souls",
1483 | "author": "Frank Washington",
1484 | "number_of_pages": 439,
1485 | "rating": 1.4,
1486 | "publication_date": "1988-07-19",
1487 | "summary": "In Frank Washington's 'In Legends of Lost Souls', the setting of a hidden library becomes a stage for a fight for justice. The narrative weaves through unleashing a terrible weapon, offering a dazzling epic of wonder and imagination.",
1488 | "genres": [
1489 | "Tragedy"
1490 | ],
1491 | "metadata": {
1492 | "ISBN": "978-0-220-33316-4",
1493 | "language": "English",
1494 | "edition": "Illustrated Edition"
1495 | },
1496 | "isCheckedOut": true,
1497 | "borrower": "Dominic Carter",
1498 | "dueDate": "2024-12-20"
1499 | },
1500 | {
1501 | "title": "From the Horizon of Lost Souls",
1502 | "author": "Jeffery Parker",
1503 | "number_of_pages": 627,
1504 | "rating": 3.4,
1505 | "publication_date": "1984-06-19",
1506 | "summary": "Set amidst a remote island, 'From the Horizon of Lost Souls' by Jeffery Parker takes on a journey through time, where fulfilling a forgotten destiny leads to a heartrending saga of love and loss.",
1507 | "genres": [
1508 | "Horror"
1509 | ],
1510 | "metadata": {
1511 | "ISBN": "978-1-4489-3322-8",
1512 | "language": "Japanese",
1513 | "edition": "Limited Edition"
1514 | },
1515 | "isCheckedOut": true,
1516 | "borrower": "Robin Pham",
1517 | "dueDate": "2024-12-12"
1518 | },
1519 | {
1520 | "title": "Through Operas of Lost Souls",
1521 | "author": "Tyler Fitzgerald",
1522 | "number_of_pages": 427,
1523 | "rating": 4.0,
1524 | "publication_date": "2012-02-06",
1525 | "summary": "Within a secret base in the Arctic, 'Through Operas of Lost Souls' by Tyler Fitzgerald captures the spirit of a quest for the truth. The story builds as characters confront salvaging a shattered trust, offering a chilling and atmospheric tale.",
1526 | "genres": [
1527 | "Memoir",
1528 | "Drama",
1529 | "Philosophy"
1530 | ],
1531 | "metadata": {
1532 | "ISBN": "978-0-283-73842-5",
1533 | "language": "Japanese",
1534 | "edition": "Anniversary Edition"
1535 | },
1536 | "isCheckedOut": false,
1537 | "borrower": null,
1538 | "dueDate": null
1539 | },
1540 | {
1541 | "title": "Among Legends of the Future",
1542 | "author": "Mark Vasquez",
1543 | "number_of_pages": 366,
1544 | "rating": 2.3,
1545 | "publication_date": "2013-09-05",
1546 | "summary": "'Among Legends of the Future' by Mark Vasquez immerses readers in an underwater cave, where a battle for the future collides with escaping from relentless pursuers, delivering a deep character study.",
1547 | "genres": [
1548 | "Poetry"
1549 | ],
1550 | "metadata": {
1551 | "ISBN": "978-0-7792-2720-4",
1552 | "language": "Arabic",
1553 | "edition": "First"
1554 | },
1555 | "isCheckedOut": true,
1556 | "borrower": "Susan Williams",
1557 | "dueDate": "2024-12-02"
1558 | },
1559 | {
1560 | "title": "Across Stars and the Unknown",
1561 | "author": "Scott Russell",
1562 | "number_of_pages": 602,
1563 | "rating": 4.6,
1564 | "publication_date": "2011-10-05",
1565 | "summary": "'Across Stars and the Unknown' by Scott Russell is set in a remote island and tells a story of a quest for vengeance. The protagonists face defeating a powerful adversary, in a tale that delivers a tour de force.",
1566 | "genres": [
1567 | "Dystopian"
1568 | ],
1569 | "metadata": {
1570 | "ISBN": "978-1-916911-10-9",
1571 | "language": "German",
1572 | "edition": "Illustrated Edition"
1573 | },
1574 | "isCheckedOut": false,
1575 | "borrower": null,
1576 | "dueDate": null
1577 | },
1578 | {
1579 | "title": "From Ashes of the Heart",
1580 | "author": "Jason Duncan",
1581 | "number_of_pages": 198,
1582 | "rating": 2.9,
1583 | "publication_date": "1994-11-20",
1584 | "summary": "Set against a remote island, 'From Ashes of the Heart' by Jason Duncan unveils a quest for redemption. The story builds through defying a tyrant, offering a deep character study.",
1585 | "genres": [
1586 | "Horror"
1587 | ],
1588 | "metadata": {
1589 | "ISBN": "978-0-8401-0949-1",
1590 | "language": "Italian",
1591 | "edition": "Anniversary Edition"
1592 | },
1593 | "isCheckedOut": false,
1594 | "borrower": null,
1595 | "dueDate": null
1596 | },
1597 | {
1598 | "title": "Beneath Waves Through Time",
1599 | "author": "Kristin Garrett",
1600 | "number_of_pages": 296,
1601 | "rating": 3.2,
1602 | "publication_date": "1994-02-21",
1603 | "summary": "In 'Beneath Waves Through Time', Kristin Garrett crafts a narrative set in a bustling marketplace, focusing on a journey of self-discovery. With solving a baffling mystery, this book is a pulse-pounding thrill ride.",
1604 | "genres": [
1605 | "Biography",
1606 | "History",
1607 | "Poetry",
1608 | "Thriller"
1609 | ],
1610 | "metadata": {
1611 | "ISBN": "978-0-7701-5322-9",
1612 | "language": "German",
1613 | "edition": "Anniversary Edition"
1614 | },
1615 | "isCheckedOut": true,
1616 | "borrower": "Steven Smith",
1617 | "dueDate": "2024-11-29"
1618 | },
1619 | {
1620 | "title": "Beyond Dreams and Forgotten Worlds",
1621 | "author": "James Lee",
1622 | "number_of_pages": 395,
1623 | "rating": 1.7,
1624 | "publication_date": "2007-02-24",
1625 | "summary": "'Beyond Dreams and Forgotten Worlds' by James Lee immerses readers in a remote island, where a search for answers collides with unlocking a hidden power, delivering a evocative tapestry of emotions.",
1626 | "genres": [
1627 | "Biography",
1628 | "Non-Fiction",
1629 | "Satire"
1630 | ],
1631 | "metadata": {
1632 | "ISBN": "978-1-06-454125-8",
1633 | "language": "Russian",
1634 | "edition": "Limited Edition"
1635 | },
1636 | "isCheckedOut": false,
1637 | "borrower": null,
1638 | "dueDate": null
1639 | },
1640 | {
1641 | "title": "Under Whispers of Broken Promises",
1642 | "author": "Eduardo Gibbs",
1643 | "number_of_pages": 375,
1644 | "rating": 4.6,
1645 | "publication_date": "2002-10-18",
1646 | "summary": "In Eduardo Gibbs's 'Under Whispers of Broken Promises', the setting of a hidden library becomes a stage for a clash of cultures. The narrative weaves through facing their greatest fears, offering a thought-provoking exploration of the human condition.",
1647 | "genres": [
1648 | "Philosophy",
1649 | "Self-Help"
1650 | ],
1651 | "metadata": {
1652 | "ISBN": "978-0-325-25094-6",
1653 | "language": "French",
1654 | "edition": "Limited Edition"
1655 | },
1656 | "isCheckedOut": true,
1657 | "borrower": "Charles Barber",
1658 | "dueDate": "2024-12-14"
1659 | },
1660 | {
1661 | "title": "Among Dreams and the Journey",
1662 | "author": "Melissa Wyatt",
1663 | "number_of_pages": 574,
1664 | "rating": 4.7,
1665 | "publication_date": "2009-03-29",
1666 | "summary": "'Among Dreams and the Journey' by Melissa Wyatt unfolds in a crumbling mansion, where a struggle against time sets the stage. Characters navigate facing their greatest fears in a dark and brooding story.",
1667 | "genres": [
1668 | "Science Fiction",
1669 | "Romance",
1670 | "Dystopian"
1671 | ],
1672 | "metadata": {
1673 | "ISBN": "978-1-177-04903-0",
1674 | "language": "Russian",
1675 | "edition": "Special Release"
1676 | },
1677 | "isCheckedOut": false,
1678 | "borrower": null,
1679 | "dueDate": null
1680 | },
1681 | {
1682 | "title": "Beyond Notes of Tomorrow",
1683 | "author": "Elizabeth Perez",
1684 | "number_of_pages": 436,
1685 | "rating": 2.6,
1686 | "publication_date": "1984-01-25",
1687 | "summary": "Within the world of a forgotten metropolis, Elizabeth Perez's 'Beyond Notes of Tomorrow' unravels a tale of a race to uncover ancient secrets. Characters must confront defying a cruel god, resulting in a light and breezy beach read.",
1688 | "genres": [
1689 | "Fantasy",
1690 | "Memoir",
1691 | "Non-Fiction"
1692 | ],
1693 | "metadata": {
1694 | "ISBN": "978-1-992435-32-2",
1695 | "language": "Russian",
1696 | "edition": "Deluxe Edition"
1697 | },
1698 | "isCheckedOut": false,
1699 | "borrower": null,
1700 | "dueDate": null
1701 | },
1702 | {
1703 | "title": "Within Legends and the Journey",
1704 | "author": "Peter Dixon",
1705 | "number_of_pages": 741,
1706 | "rating": 3.1,
1707 | "publication_date": "2019-07-15",
1708 | "summary": "Within a bustling marketplace, 'Within Legends and the Journey' by Peter Dixon captures the spirit of a fight for survival. The story builds as characters confront overcoming their own doubts, offering a gripping tale of suspense.",
1709 | "genres": [
1710 | "Romance",
1711 | "Adventure",
1712 | "Philosophy"
1713 | ],
1714 | "metadata": {
1715 | "ISBN": "978-0-03-199377-9",
1716 | "language": "Russian",
1717 | "edition": "Limited Edition"
1718 | },
1719 | "isCheckedOut": false,
1720 | "borrower": null,
1721 | "dueDate": null
1722 | },
1723 | {
1724 | "title": "Under Secrets Under the Sky",
1725 | "author": "Ryan Phillips",
1726 | "number_of_pages": 360,
1727 | "rating": 2.9,
1728 | "publication_date": "2011-07-29",
1729 | "summary": "In Ryan Phillips's 'Under Secrets Under the Sky', set in a barren wasteland, readers explore a race to uncover ancient secrets. Faced with unleashing a terrible weapon, the story delivers a thrilling and fast-paced adventure.",
1730 | "genres": [
1731 | "History",
1732 | "Non-Fiction",
1733 | "Philosophy",
1734 | "Poetry"
1735 | ],
1736 | "metadata": {
1737 | "ISBN": "978-1-101-97526-8",
1738 | "language": "English",
1739 | "edition": "Third"
1740 | },
1741 | "isCheckedOut": true,
1742 | "borrower": "Lisa Turner",
1743 | "dueDate": "2024-12-09"
1744 | },
1745 | {
1746 | "title": "Hidden Secrets and the Ancient Prophecy",
1747 | "author": "Julie Thompson",
1748 | "number_of_pages": 700,
1749 | "rating": 1.3,
1750 | "publication_date": "2016-09-10",
1751 | "summary": "In Julie Thompson's 'Hidden Secrets and the Ancient Prophecy', the setting of an isolated lighthouse becomes a stage for an unraveling conspiracy. The narrative weaves through navigating treacherous terrain, offering a thrilling and action-packed blockbuster.",
1752 | "genres": [
1753 | "Dystopian"
1754 | ],
1755 | "metadata": {
1756 | "ISBN": "978-0-05-478884-0",
1757 | "language": "Russian",
1758 | "edition": "Limited Edition"
1759 | },
1760 | "isCheckedOut": true,
1761 | "borrower": "Haley Macias",
1762 | "dueDate": "2024-11-22"
1763 | },
1764 | {
1765 | "title": "Into Moments of the Landscape",
1766 | "author": "Wesley Hamilton",
1767 | "number_of_pages": 430,
1768 | "rating": 2.9,
1769 | "publication_date": "1999-03-16",
1770 | "summary": "Wesley Hamilton's masterpiece, 'Into Moments of the Landscape', is a story set in a desert wasteland. Focusing on a quest for the truth, the narrative reveals navigating treacherous terrain, delivering a light and breezy beach read.",
1771 | "genres": [
1772 | "Satire",
1773 | "Science Fiction",
1774 | "History"
1775 | ],
1776 | "metadata": {
1777 | "ISBN": "978-1-4294-2654-1",
1778 | "language": "Korean",
1779 | "edition": "Collector's Edition"
1780 | },
1781 | "isCheckedOut": false,
1782 | "borrower": null,
1783 | "dueDate": null
1784 | },
1785 | {
1786 | "title": "Hidden the Horizon of the Heart",
1787 | "author": "Ashley Beltran",
1788 | "number_of_pages": 316,
1789 | "rating": 2.0,
1790 | "publication_date": "1981-08-22",
1791 | "summary": "Within the world of an isolated lighthouse, Ashley Beltran's 'Hidden the Horizon of the Heart' unravels a tale of a fight for honor. Characters must confront avenging a terrible wrong, resulting in a deep character study.",
1792 | "genres": [
1793 | "Drama",
1794 | "Romance",
1795 | "Philosophy"
1796 | ],
1797 | "metadata": {
1798 | "ISBN": "978-1-143-40842-7",
1799 | "language": "Arabic",
1800 | "edition": "First"
1801 | },
1802 | "isCheckedOut": false,
1803 | "borrower": null,
1804 | "dueDate": null
1805 | },
1806 | {
1807 | "title": "Into Darkness on the Edge",
1808 | "author": "Caitlin Leon",
1809 | "number_of_pages": 449,
1810 | "rating": 2.2,
1811 | "publication_date": "2004-10-01",
1812 | "summary": "In Caitlin Leon's 'Into Darkness on the Edge', set in a magical forest, readers explore a search for inner peace. Faced with defying a cruel fate, the story delivers an unforgettable and immersive experience.",
1813 | "genres": [
1814 | "Epic",
1815 | "Fantasy"
1816 | ],
1817 | "metadata": {
1818 | "ISBN": "978-0-89557-521-0",
1819 | "language": "German",
1820 | "edition": "Second"
1821 | },
1822 | "isCheckedOut": false,
1823 | "borrower": null,
1824 | "dueDate": null
1825 | },
1826 | {
1827 | "title": "Into Darkness on the Edge",
1828 | "author": "Theodore Brown",
1829 | "number_of_pages": 723,
1830 | "rating": 2.0,
1831 | "publication_date": "2017-09-07",
1832 | "summary": "Set in a magical forest, 'Into Darkness on the Edge' by Theodore Brown dives into an unraveling conspiracy. Facing solving a baffling mystery, this is a gripping tale of suspense.",
1833 | "genres": [
1834 | "Thriller",
1835 | "Mystery",
1836 | "Tragedy",
1837 | "Romance"
1838 | ],
1839 | "metadata": {
1840 | "ISBN": "978-0-353-53711-8",
1841 | "language": "Spanish",
1842 | "edition": "Anniversary Edition"
1843 | },
1844 | "isCheckedOut": true,
1845 | "borrower": "Elizabeth Casey",
1846 | "dueDate": "2024-11-25"
1847 | },
1848 | {
1849 | "title": "A Moons that Changed Everything",
1850 | "author": "Brian Torres",
1851 | "number_of_pages": 795,
1852 | "rating": 1.4,
1853 | "publication_date": "1983-05-29",
1854 | "summary": "Amidst a distant alien world, 'A Moons that Changed Everything' by Brian Torres delves into a journey to the afterlife. The characters must overcome reclaiming a stolen legacy, making this a heartwarming journey.",
1855 | "genres": [
1856 | "Biography",
1857 | "Adventure",
1858 | "Philosophy",
1859 | "Epic"
1860 | ],
1861 | "metadata": {
1862 | "ISBN": "978-0-7893-9962-5",
1863 | "language": "Italian",
1864 | "edition": "Second"
1865 | },
1866 | "isCheckedOut": true,
1867 | "borrower": "Robert Ross",
1868 | "dueDate": "2024-11-22"
1869 | },
1870 | {
1871 | "title": "Into Silence in the Universe",
1872 | "author": "Hayley Thompson",
1873 | "number_of_pages": 524,
1874 | "rating": 2.1,
1875 | "publication_date": "2008-08-19",
1876 | "summary": "'Into Silence in the Universe' is Hayley Thompson's latest masterpiece set in a distant alien world. With a focus on a quest for redemption, the story brings to life deciphering cryptic messages, delivering a lighthearted romp.",
1877 | "genres": [
1878 | "Historical Fiction",
1879 | "Self-Help",
1880 | "Dystopian"
1881 | ],
1882 | "metadata": {
1883 | "ISBN": "978-1-57695-980-0",
1884 | "language": "English",
1885 | "edition": "Illustrated Edition"
1886 | },
1887 | "isCheckedOut": true,
1888 | "borrower": "Jeanne Tucker",
1889 | "dueDate": "2024-12-08"
1890 | },
1891 | {
1892 | "title": "Beneath Phantoms of the Past",
1893 | "author": "Kevin Santiago",
1894 | "number_of_pages": 401,
1895 | "rating": 1.4,
1896 | "publication_date": "2018-09-22",
1897 | "summary": "'Beneath Phantoms of the Past' by Kevin Santiago takes place in a hidden library, where an unsolved mystery shapes the characters' journey through reclaiming a stolen legacy. a deep character study.",
1898 | "genres": [
1899 | "Biography",
1900 | "Adventure",
1901 | "Satire"
1902 | ],
1903 | "metadata": {
1904 | "ISBN": "978-1-4850-4091-0",
1905 | "language": "French",
1906 | "edition": "Second"
1907 | },
1908 | "isCheckedOut": false,
1909 | "borrower": null,
1910 | "dueDate": null
1911 | },
1912 | {
1913 | "title": "Through Ashes of the Future",
1914 | "author": "Rebecca Watson",
1915 | "number_of_pages": 385,
1916 | "rating": 1.4,
1917 | "publication_date": "1981-09-20",
1918 | "summary": "Set against a vibrant carnival, 'Through Ashes of the Future' by Rebecca Watson unveils a fight for honor. The story builds through making impossible sacrifices, offering a poignant and bittersweet reflection.",
1919 | "genres": [
1920 | "History",
1921 | "Romance",
1922 | "Satire",
1923 | "Poetry"
1924 | ],
1925 | "metadata": {
1926 | "ISBN": "978-1-5380-0152-3",
1927 | "language": "Portuguese",
1928 | "edition": "First"
1929 | },
1930 | "isCheckedOut": false,
1931 | "borrower": null,
1932 | "dueDate": null
1933 | },
1934 | {
1935 | "title": "Against Whispers of Yesterday",
1936 | "author": "Megan Reed",
1937 | "number_of_pages": 325,
1938 | "rating": 3.0,
1939 | "publication_date": "1994-01-19",
1940 | "summary": "'Against Whispers of Yesterday', written by Megan Reed, paints a vivid picture of a barren wasteland. Exploring a struggle against tyranny, the story revolves around confronting a powerful enemy, offering a dark and twisted tale of horror.",
1941 | "genres": [
1942 | "Epic"
1943 | ],
1944 | "metadata": {
1945 | "ISBN": "978-0-02-315141-5",
1946 | "language": "Portuguese",
1947 | "edition": "Third"
1948 | },
1949 | "isCheckedOut": false,
1950 | "borrower": null,
1951 | "dueDate": null
1952 | },
1953 | {
1954 | "title": "Under Waves of the Landscape",
1955 | "author": "Aaron Morris",
1956 | "number_of_pages": 774,
1957 | "rating": 2.4,
1958 | "publication_date": "2019-11-18",
1959 | "summary": "'Under Waves of the Landscape' is Aaron Morris's latest masterpiece set in a lost temple. With a focus on a battle for the ages, the story brings to life defending a dream, delivering a pulse-pounding thrill ride.",
1960 | "genres": [
1961 | "Mystery",
1962 | "Science Fiction",
1963 | "Self-Help"
1964 | ],
1965 | "metadata": {
1966 | "ISBN": "978-0-493-30631-5",
1967 | "language": "Italian",
1968 | "edition": "Second"
1969 | },
1970 | "isCheckedOut": false,
1971 | "borrower": null,
1972 | "dueDate": null
1973 | },
1974 | {
1975 | "title": "In Waves of a Lifetime",
1976 | "author": "Richard Rocha",
1977 | "number_of_pages": 591,
1978 | "rating": 2.2,
1979 | "publication_date": "2008-08-13",
1980 | "summary": "In 'In Waves of a Lifetime', Richard Rocha sets a story of a fight for love against the vivid backdrop of a distant alien world. The characters' struggles with unleashing a terrible force result in a philosophical meditation.",
1981 | "genres": [
1982 | "Romance",
1983 | "Self-Help"
1984 | ],
1985 | "metadata": {
1986 | "ISBN": "978-1-393-88060-8",
1987 | "language": "English",
1988 | "edition": "Deluxe Edition"
1989 | },
1990 | "isCheckedOut": false,
1991 | "borrower": null,
1992 | "dueDate": null
1993 | },
1994 | {
1995 | "title": "In Stars of Eternal Night",
1996 | "author": "Chris Byrd",
1997 | "number_of_pages": 719,
1998 | "rating": 4.0,
1999 | "publication_date": "1983-06-07",
2000 | "summary": "'In Stars of Eternal Night', written by Chris Byrd, paints a vivid picture of a secret base in the Arctic. Exploring a fight for honor, the story revolves around challenging a corrupt system, offering a heartrending saga of love and loss.",
2001 | "genres": [
2002 | "Fantasy",
2003 | "History",
2004 | "Philosophy"
2005 | ],
2006 | "metadata": {
2007 | "ISBN": "978-1-09-264432-7",
2008 | "language": "German",
2009 | "edition": "Collector's Edition"
2010 | },
2011 | "isCheckedOut": false,
2012 | "borrower": null,
2013 | "dueDate": null
2014 | },
2015 | {
2016 | "title": "Into Reflections and the Journey",
2017 | "author": "Daniel Wheeler",
2018 | "number_of_pages": 428,
2019 | "rating": 3.1,
2020 | "publication_date": "2005-09-14",
2021 | "summary": "In the backdrop of a mysterious castle, 'Into Reflections and the Journey' by Daniel Wheeler explores a battle for the ages. The characters' journey through rebuilding a kingdom results in an uplifting tale.",
2022 | "genres": [
2023 | "Thriller",
2024 | "Mystery",
2025 | "History"
2026 | ],
2027 | "metadata": {
2028 | "ISBN": "978-1-4791-5224-7",
2029 | "language": "Korean",
2030 | "edition": "Third"
2031 | },
2032 | "isCheckedOut": false,
2033 | "borrower": null,
2034 | "dueDate": null
2035 | },
2036 | {
2037 | "title": "Within Voices of the Past",
2038 | "author": "Cynthia Rivera",
2039 | "number_of_pages": 435,
2040 | "rating": 1.2,
2041 | "publication_date": "2004-04-30",
2042 | "summary": "In 'Within Voices of the Past', Cynthia Rivera crafts a narrative set in a barren wasteland, focusing on an unraveling conspiracy. With redeeming a shameful past, this book is a whimsical and enchanting fable.",
2043 | "genres": [
2044 | "Poetry"
2045 | ],
2046 | "metadata": {
2047 | "ISBN": "978-1-59334-122-0",
2048 | "language": "German",
2049 | "edition": "Anniversary Edition"
2050 | },
2051 | "isCheckedOut": true,
2052 | "borrower": "Allison Hernandez",
2053 | "dueDate": "2024-11-28"
2054 | }
2055 | ]
2056 |
--------------------------------------------------------------------------------