products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_1D2NXB20PN00"
This data as json, CSV (advanced)
Suggested facets: listed_at, 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_02N4TFN7ATEG | CNT_0GBTEPAG5JXG | Two on Ice CNT_1D2NXB20PN00 | CNT_1D2NXB20PN00 | 2 | 1 | 1 | Volume 2 | [] | Two on Ice, Vol. 2 | Hayuma must decide whether to pursue the singles category or pairs category as he moves forward in the figure skating world. Kisara wants him to make the choice for himself and encourages him to compete in both categories before making a final decision. | 01KGC08RX9PTW24JTJXTVGE016 | 2.0 | 2025-10-09T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Two on Ice, Vol. 2 | TWO ON ICE © 2023 by Elck Itsumo/SHUEISHA Inc. | 2025-11-25T08:00:00.000Z | 0 | 0 | |||||
| PRD_09SGT48N2100 | CNT_3MRDHE1ZQSB0 | Two on Ice CNT_1D2NXB20PN00 | CNT_1D2NXB20PN00 | 2 | 1 | 1 | Volume 4 | [] | Two on Ice, Vol. 4 | In this final volume, Hayuma and Kisara prepare to compete against Takayuki, Kisara's old friend turned bitter rival. While Hayuma and Kisara continue to build trust and understanding as a team, Takayuki seems to have ulterior motives for choosing his pairs partner. Who will persevere in the climactic final face-off? | 01KGC0BAQDTJ6G4DWRS213K1FR | 4.0 | 2025-10-17T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Two on Ice, Vol. 4 | TWO ON ICE © 2023 by Elck Itsumo/SHUEISHA Inc. | 2025-11-25T08:00:00.000Z | 0 | 0 | |||||
| PRD_232FCR448TY0 | CNT_1G0GYZ5MA2D0 | Two on Ice CNT_1D2NXB20PN00 | CNT_1D2NXB20PN00 | 2 | 1 | 1 | Volume 1 | [] | Two on Ice, Vol. 1 | Three years after deciding on a life of figure skating, Hayuma moves to Tokyo with his family. Excited to skate at a big-city ice rink, he heads to an open practice where he sees a skater who looks very familiar. Could it be that girl from years ago? | 01KGBZG7ECXG9HV44WD1VEZH3A | 1.0 | 2025-10-09T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Two on Ice, Vol. 1 | TWO ON ICE © 2023 by Elck Itsumo/SHUEISHA Inc. | 2025-11-25T08:00:00.000Z | 0 | 0 | |||||
| PRD_3RSVEYMKD370 | CNT_3Q9VVRXF7VM0 | Two on Ice CNT_1D2NXB20PN00 | CNT_1D2NXB20PN00 | 2 | 1 | 1 | Volume 3 | [] | Two on Ice, Vol. 3 | Hayuma continues to improve his pair moves and jumps. As he trains, he's introduced to the many quirky pairs skaters who compete in Japan. Then the Beijing Olympics begin, and Hayuma is further inspired to reach new heights in his skating career! | 01KGC08H9TCSZRYMPRDA739M8Q | 3.0 | 2025-10-09T07:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | Two on Ice, Vol. 3 | TWO ON ICE © 2023 by Elck Itsumo/SHUEISHA Inc. | 2025-11-25T08: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);