products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_0V9KHNYATAX0"
This data as json, CSV (advanced)
Suggested facets: geoblock_id, 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_04JET9821R30 | CNT_1H7BKE1ZNAS0 | Glitch CNT_0V9KHNYATAX0 | CNT_0V9KHNYATAX0 | 2 | 1 | 1 | Volume 1 | [] | Glitch, Vol. 1 | Siblings Minato and Akira Lee have moved to a new town, and they’re expecting things to be different— but not this different! Ghostly figures tower over and pass through buildings, drawing no reaction from the locals, some of whom appear far from normal themselves. When Akira spots a strange creature outside her window, she and her new friends organize a search. If no one else can explain the uncanny appearances, the investigation club will get to the bottom of it! | 01KGB6RYP475QX1TJWMTQAAB3Z | 1.0 | 2023-04-24T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Glitch, Vol. 1 | 2023-09-19T00:00:00.000Z | 0 | 0 | ||||||
| PRD_0HQC42P7A3Q0 | CNT_3MQN41NP3JNG | Glitch CNT_0V9KHNYATAX0 | CNT_0V9KHNYATAX0 | 2 | 1 | 1 | Volume 4 | [] | Glitch, Vol. 4 | As a massive glitch surges over the forest, the Investigation Club fears there is little their band can do to curb the anomalies that may threaten the town. Hideno and Hirata have been studying the phenomenon for years, and even they are still nowhere near an explanation. Still, the glitches have brought people from various lands and worlds together, and many heads (of all different shapes and sizes) are better than one! The investigation continues— starting with how to get Hirata back home! | 01KGAZNCDFPECBHPJBRK5N3DCH | 4.0 | 2024-02-27T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Glitch, Vol. 4 | 2024-08-27T07:00:00.000Z | 0 | 0 | ||||||
| PRD_0J411T2J4AR0 | CNT_1CVKT1QZAMK0 | Glitch CNT_0V9KHNYATAX0 | CNT_0V9KHNYATAX0 | 2 | 1 | 1 | Volume 2 | [] | Glitch, Vol. 2 | Compiling what little they know, the Investigation Club deduces that the forest at the center of town is also at the heart of the mystery behind the glitches. High fences on all sides make getting into the forest impractical—but the library is always a good place to start! In its short history, Touka-cho’s shadowy specters and unique mix of otherworldly residents have always been part of the town’s fabric, though the library doesn’t have much to offer on the provenance of the forest—or why it was fenced off years ago… | 01KH3G6VSZTGGKTCP7HDSTJ6HH | 2.0 | 2023-08-21T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Glitch, Vol. 2 | 2023-12-12T00:00:00.000Z | 0 | 0 | ||||||
| PRD_38ASVK1X5780 | CNT_3ZQXK8KKD7Y0 | Glitch CNT_0V9KHNYATAX0 | CNT_0V9KHNYATAX0 | 2 | 1 | 1 | Volume 3 | [] | Glitch, Vol. 3 | In investigating the strange “glitches” happening all over the town, Minato and Akira reach the center of a large forest, thought to be the source of the mysterious phenomenon. There, they witness a strange scene right before their eyes. Trees floating in midair...huge wild animals...and strange figures in gas masks. Where has Hirata been carried off to? And what is the truth behind the existence of the other world…? | 01KG9PGTVDG64CPBYA29QPRZYX | 3.0 | 2023-12-21T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Glitch, Vol. 3 | 2024-05-21T00: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);