products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_14EV2WCB4KGG"
This data as json, CSV (advanced)
Suggested facets: copyright, listed_at (date), on_sale_at (date)
| id ▼ | content_id | series_id | parent_content_id | level | content_type | product_type | title | alt_titles | subtitle | display_title | display_title_short | description | description_short | image_id | display_order | listed_at | label_id | geoblock_id | display_name | copyright | on_presale_at | on_sale_at | off_sale_at | add_on | add_on_campaign_only |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PRD_00YYJEZ4G5EG | CNT_0V6SPFJYNG1G | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying CNT_14EV2WCB4KGG | CNT_14EV2WCB4KGG | 2 | 2 | 1 | Volume 3 | [] | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 3 | My academy life continues, but I hate the unfair caste system that causes discrimination in the school. I know I can't change it all by myself, but I can't just stand back and let this inequality continue. Meanwhile, I decide to investigate a large hole that mysteriously appeared in the academy. What secrets does it hold? Can it help me get rid of my curse? I'm excited to learn everything I can, but I'm suddenly transported to unknown ruins while a dangerous monster awakens from its centuries-long slumber. I have to get out of here so that I can save my friends and my kingdom before it's too late! | I want to learn the secrets of the mysterious hole that suddenly appeared in the academy. Faced with monsters barring my path, I'm suddenly teleported to unknown ruins. If I don't escape this place soon, the entire world could be in danger! | 01KGASNHN3XMTN9851Y5VGD57T | 3.0 | 2023-09-22T07:00:00.000Z | J-Novel Club LAB_30X9NTZYDFV0 | GEO_1PQM5BDYSMG0 | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 3 | Copyright © Genkotsu Kumano, Falmaro 2023 | 2023-12-20T08:00:00.000Z | 0 | 0 | ||||
| PRD_2TDEN0YFBT8G | CNT_1DK49MXKFQPG | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying CNT_14EV2WCB4KGG | CNT_14EV2WCB4KGG | 2 | 2 | 1 | Volume 1 | [] | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 1 | Prince Callus was born with a mortal curse that marks him as a Taboo Being. His days are numbered, and he's been told the last six months of his life will be nothing but bedridden suffering. This grim future haunts him...until he meets Gourley, who can wield light magic. Callus becomes the magician's apprentice in hopes that this legendary power might dispel his curse if he can manage to master it in the time he has left. He has immense magical energy and the rare ability to see spirits on his side, after all, not to mention friends and family who are there to support him every step of the way. And so Callus stakes his life on this mission... It's time to learn light magic or die trying! | Prince Callus was born a Taboo Being, afflicted with a deadly curse. He only has six months to live, but light magic may be the cure if he can master it. It's a race against time, and someone is set on keeping the existence of his kind hidden... | 01KGB4RCZB7YXDX3WDS70NST62 | 1.0 | 2023-02-14T08:00:00.000Z | J-Novel Club LAB_30X9NTZYDFV0 | GEO_1PQM5BDYSMG0 | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 1 | Copyright © Genkotsu Kumano, Falmaro 2022 | 2023-05-11T07:00:00.000Z | 0 | 0 | ||||
| PRD_2XS44G6RS2KG | CNT_1PWWX4PRZHF0 | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying CNT_14EV2WCB4KGG | CNT_14EV2WCB4KGG | 2 | 2 | 1 | Volume 2 | [] | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 2 | My days of bedridden suffering are over now that I've learned light magic. I can finally venture beyond the manor and attend the Academy of Magic! I'm excited to meet new friends and experience new things at school, but it isn't all fun and games. Students are getting dragged into a conflict between aristocrats and their factions, and there's a mysterious clock tower on campus that holds a secret deep underground. Who is this moon magician, and why does she seem to know about my curse? I don't know if I can trust her, but she might be my best shot at getting rid of my curse for good! | Prince Callus is finally able to go beyond his manor and attend the Academy of Magic. He reunites with old friends and makes new ones, but it's not all fun and games. What secrets does the school hold that can help Callus dispel his curse? | 01KGB6J85YVK0KSEM28M1M9EX4 | 2.0 | 2023-05-16T07:00:00.000Z | J-Novel Club LAB_30X9NTZYDFV0 | GEO_1PQM5BDYSMG0 | I Only Have Six Months to Live, So I'm Gonna Break the Curse with Light Magic or Die Trying: Volume 2 | Copyright © Genkotsu Kumano, Falmaro 2023 | 2023-06-30T07:00:00.000Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE products (
id TEXT PRIMARY KEY,
content_id TEXT NOT NULL,
series_id TEXT NOT NULL,
parent_content_id TEXT,
level INTEGER NOT NULL,
content_type INTEGER NOT NULL,
product_type INTEGER NOT NULL,
title TEXT NOT NULL,
alt_titles TEXT NOT NULL,
subtitle TEXT NOT NULL,
display_title TEXT NOT NULL,
display_title_short TEXT NOT NULL,
description TEXT NOT NULL,
description_short TEXT NOT NULL,
image_id TEXT NOT NULL,
display_order REAL NOT NULL,
listed_at TEXT NOT NULL,
label_id TEXT NOT NULL,
geoblock_id TEXT,
display_name TEXT NOT NULL,
copyright TEXT,
on_presale_at TEXT,
on_sale_at TEXT NOT NULL,
off_sale_at TEXT,
add_on INTEGER NOT NULL,
add_on_campaign_only INTEGER NOT NULL,
FOREIGN KEY (series_id) REFERENCES series(id),
FOREIGN KEY (label_id) REFERENCES labels(id),
FOREIGN KEY (geoblock_id) REFERENCES geoblocks(id)
);
CREATE INDEX idx_products_content ON products(content_id);
CREATE INDEX idx_products_series ON products(series_id);
CREATE INDEX idx_products_label ON products(label_id);
CREATE INDEX idx_products_geoblock ON products(geoblock_id);
CREATE INDEX idx_products_image ON products(image_id);