products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_16GA5MRZNTS0"
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_0RACGXTQCWSG | CNT_2Z06DHYMKV7G | Victoria's Electric Coffin CNT_16GA5MRZNTS0 | CNT_16GA5MRZNTS0 | 2 | 1 | 1 | Volume 02 | [] | Victoria's Electric Coffin 02 | Eins is no match for Willie's cybernetic arms when they face off to prove whether Victoria's or Henry's creation is superior. Just when Eins thinks the battle is over, he has to combat Willie gone berserk! Henry then reveals a shocking secret from Eins's past as David. Victoria must decide if she can continue to support Eins despite learning the devastating truth... | 01KGBRM3E80PPX10VG4H2NKPF4 | 2.0 | 2025-07-03T07:00:00.000Z | SQUARE ENIX LAB_26KAVJENDCDG | GEO_1PQM5BDYSMG0 | Victoria's Electric Coffin 02 | 2025-07-03T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1ZR72W8ZVG50 | CNT_03S91VS47FB0 | Victoria's Electric Coffin CNT_16GA5MRZNTS0 | CNT_16GA5MRZNTS0 | 2 | 1 | 1 | Volume 01 | [] | Victoria's Electric Coffin 01 | David Douglas wishes he'd never been born. What's the point of a slum boy enduring a miserable existence and ending up on death row? Victoria Frankenstein, a thirteen-year-old medical doctor, offers him a change of fate. Together they can help people and prove the worth of Victoria's invention: the electric coffin. After David becomes Eins, what kind of life will this second chance offer? | 01KGBQTVA9EHRNK9AXJ7X5K2CK | 1.0 | 2025-07-03T07:00:00.000Z | SQUARE ENIX LAB_26KAVJENDCDG | GEO_1PQM5BDYSMG0 | Victoria's Electric Coffin 01 | 2025-07-03T07:00:00.000Z | 0 | 0 | ||||||
| PRD_3P93BCT3F5J0 | CNT_1NY7YTHKN3Y0 | Victoria's Electric Coffin CNT_16GA5MRZNTS0 | CNT_16GA5MRZNTS0 | 2 | 1 | 1 | Volume 03 | [] | Victoria's Electric Coffin 03 | Two years after Justine's death, David snapped in a fit of rage and killed three men on her behalf. However, another murder in David's past comes to haunt his present even more... Victoria learns the heartbreaking truth and decides to travel with Henry to Europe. Will Eins arrive at the ship in time to change Victoria's mind and save her from Henry's newest creation?! | 01KGBRKPYV42XZKFYP78SPKRWH | 3.0 | 2025-07-03T07:00:00.000Z | SQUARE ENIX LAB_26KAVJENDCDG | GEO_1PQM5BDYSMG0 | Victoria's Electric Coffin 03 | 2025-07-03T07: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);