products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_2PS9Z3RQE0GG"
This data as json, CSV (advanced)
Suggested facets: description_short, 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_0JBWC8WSHTS0 | CNT_1HQTJN7RSJ10 | Box of Light CNT_2PS9Z3RQE0GG | CNT_2PS9Z3RQE0GG | 2 | 1 | 1 | Volume 3 | [] | Box of Light Vol. 3 | The convenience store at the boundary between life and death is beset by hordes of darkness and the staff is in a crisis. The humans return to the world of the living to try to bring back their abducted coworker Motoha, whose body was snatched away. Can they save their friend? | FRIENDS FIGHTING THE DARKNESS... | 01KGBJ6G1AWF7ADCKPM1ASCWVD | 3.0 | 2024-11-15T08:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PZ1FZ4QK0N0 | Box of Light Vol. 3 | © 2020 Seiko ERISAWA | 2024-12-31T08:00:00.000Z | 0 | 0 | ||||
| PRD_0RN8AF3FEZ50 | CNT_1FW3HPJTG20G | Box of Light CNT_2PS9Z3RQE0GG | CNT_2PS9Z3RQE0GG | 2 | 1 | 1 | Volume 1 | [] | Box of Light Vol. 1 | A quiet convenience store at the crossroads between life and death. Its faint glow in the darkness draws in transient souls, pulling them closer to the final purchase they'll ever make. Prepare for shadowy creatures, strange employees, and an air of dread in this delightfully creepy supernatural tale. | The spooky tale of a haunted convenience store. | 01KGAH0DQGRVWBFQDYQAHQGXGV | 1.0 | 2022-05-30T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PZ1FZ4QK0N0 | Box of Light Vol. 1 | 2020 Seiko ERISAWA | 2022-07-12T07:00:00.000Z | 0 | 0 | ||||
| PRD_1HB28523BA70 | CNT_0ZF902ZZWX50 | Box of Light CNT_2PS9Z3RQE0GG | CNT_2PS9Z3RQE0GG | 2 | 1 | 1 | Volume 2 | [] | Box of Light Vol. 2 | A convenience store lingers at the boundary between life and death. Its faint glow in the darkness draws in unsuspecting souls, pushing them closer to the final purchase they'll ever make. Yet for the quirky employees who work there, it's a job much like any other, if undeniably more strange. Now, the time has come for the past of the store's enigmatic and supernaturally gifted manager to be revealed... | The spooky tale of a haunted convenience store. | 01KGB4KPWZZW67S2266ER6010T | 2.0 | 2023-03-03T08:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PZ1FZ4QK0N0 | Box of Light Vol. 2 | 2020 Seiko ERISAWA | 2023-03-28T07:00:00.000Z | 0 | 0 | ||||
| PRD_3YD4XDDT4XE0 | CNT_15YBNZEHE5X0 | Box of Light CNT_2PS9Z3RQE0GG | CNT_2PS9Z3RQE0GG | 2 | 1 | 1 | Volume 4 | [] | Box of Light Vol. 4 | There is a convenience store at the boundary between life and death, visited by humans who find themselves on the brink. What do they wish for there? What roads do they choose? And what decision must the store manager make in order to find her lost little brother? Includes the side story "Christmas Evil"! | TO MEET SOMEONE IMPORTANT TO YOU ONCE AGAIN... | 01KGC16CVB7QFDVPTK6N82DGHB | 4.0 | 2025-10-28T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PZ1FZ4QK0N0 | Box of Light Vol. 4 | © 2025 Seiko ERISAWA | 2025-12-30T08: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);