products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
2 rows where series_id = "CNT_32MPPQDGPSHG"
This data as json, CSV (advanced)
Suggested facets: 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_00R4SQC0XDE0 | CNT_105789FJTTRG | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! CNT_32MPPQDGPSHG | CNT_32MPPQDGPSHG | 2 | 2 | 1 | Volume 1 | [] | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! Volume 1 | My name is Daisuke Furutsu, and I died getting hit by a truck full of apples. Yes, I know it's a cliché setup. Apparently somebody upstairs fell asleep on the job. Anyway, as an apology, God lets me draw five Cards of Fate that are supposed to grant me superpowers in my next life. My first four draws are amazing—stuff like magic and an infinite inventory. But everything changes with the fifth card: a "curse" that turns me into whatever killed me. I thought I was gonna end up a truck, but now I'm an apple! Luckily, I've made a friend who can teach me how to move around. I also end up saving a wannabe adventurer who just might be willing to take me along for the ride. Time for this overpowered apple to get rollin'! | I'm Daisuke Furutsu, and I got hit by a truck! Next thing I know, God is telling me my death was an accident, and I'll be getting powers from five Cards of Fate. It goes great until I draw a "curse" card and get reincarnated...as an apple?! | 01KGAK1KD32VSJ3E0155SDZE8J | 1.0 | 2022-09-20T07:00:00.000Z | J-Novel Club LAB_30X9NTZYDFV0 | GEO_1PQM5BDYSMG0 | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! Volume 1 | Copyright © 2021 Gato Illustrations Copyright © 2021 Itsuki Mito | 2022-11-30T08:00:00.000Z | 0 | 0 | ||||
| PRD_0GQTR2ZTVCQ0 | CNT_0C820AKT77N0 | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! CNT_32MPPQDGPSHG | CNT_32MPPQDGPSHG | 2 | 2 | 1 | Volume 2 | [] | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! Volume 2 | My action-packed adventure is on a roll! With Grida, Fresa, and Datil by my side, I'm sure we can overcome anything that comes our way! We're actually trying to get Grida out of the storage card safely right now, and I think the World Tree might help provide some answers. Problem is...I have no idea where it could be! Now, I'm out here curing the ill and redeeming thieves, but as soon as we hit the road, bandits strike our carriage! The only good news is that one of them let slip about a "mysterious large tree in the heart of a labyrinth." Could that be what I think it is...? Hey, wait a second! Is our journey seriously gonna wrap up that quickly?! | On my journey with my new friends, we've weaseled our way out of all sorts of situations. Our current goal is busting Grida out of her interdimensional storage jail! And so we arrive at a labyrinth that supposedly contains a certain giant tree... | 01KGB2G5S39ETFET3PH9Q6FQEW | 2.0 | 2022-11-18T08:00:00.000Z | J-Novel Club LAB_30X9NTZYDFV0 | GEO_1PQM5BDYSMG0 | Reincarnated as an Apple: This Forbidden Fruit Is Forever Unblemished! Volume 2 | Copyright © 2021 Gato Illustrations Copyright © 2021 Itsuki Mito | 2023-02-15T08: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);