products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_3FBCD7B8SDT0"
This data as json, CSV (advanced)
Suggested facets: description, 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_00DYS11MBEZG | CNT_0GTDRBPJVK40 | Saiyuki CNT_3FBCD7B8SDT0 | CNT_3FBCD7B8SDT0 | 2 | 1 | 1 | Volume 2 | [] | Saiyuki 2 | Genjyo Sanzo is a Buddhist priest in the city of Shangri-La, which is being ravaged by yokai spirits that have fallen out of balance with the natural order. His superiors send him on a journey far to the west to discover why this is happening and how to stop it. His companions are three yokai with human souls. But this is no day trip — the four will encounter many discoveries and horrors on the way, and on the road, Sanzo will wonder... can he really trust his supernatural companions? | 01KG9CYG40Z2MYFHNHVXN4N2C8 | 2.0 | 2020-08-06T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Saiyuki 2 | Kazuya Minekura / Kodansha Ltd. | 2020-08-18T07:00:00.000Z | 0 | 0 | |||||
| PRD_1QKWJ9CD4PBG | CNT_022EY6CSBTXG | Saiyuki CNT_3FBCD7B8SDT0 | CNT_3FBCD7B8SDT0 | 2 | 1 | 1 | Volume 4 | [] | Saiyuki 4 | Genjyo Sanzo is a Buddhist priest in the city of Shangri-La, which is being ravaged by yokai spirits that have fallen out of balance with the natural order. His superiors send him on a journey far to the west to discover why this is happening and how to stop it. His companions are three yokai with human souls. But this is no day trip — the four will encounter many discoveries and horrors on the way, and on the road, Sanzo will wonder... can he really trust his supernatural companions? | 01KG9E99E9B5QY53FG61GN0AVK | 4.0 | 2021-01-06T08:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Saiyuki 4 | Kazuya Minekura / Kodansha Ltd. | 2021-01-19T08:00:00.000Z | 0 | 0 | |||||
| PRD_3MXREY9R33A0 | CNT_2R569XH3SN2G | Saiyuki CNT_3FBCD7B8SDT0 | CNT_3FBCD7B8SDT0 | 2 | 1 | 1 | Volume 1 | [] | Saiyuki 1 | The boys are back, in 400-page hardcovers that are as pretty and badass as they are! This hit adventure—which blends mythology from around the world into a classic adventure story—has been out of print for years, and this collector's edition is a fitting celebration of its return! Genjo is a Buddhist priest in the city of Shangri-La, which is being ravaged by yokai spirits that have fallen out of balance with the natural order. His superiors send him on a journey far to the west to discover why this is happening and how to stop it. His companions are three yokai with human souls. But this is no day trip—the four will encounter many discoveries and horrors on the way, and on the road, Genjo will wonder ... can he really trust his supernatural companions? | 01KG9BQ5VZXFERMYA95THRQHK5 | 1.0 | 2020-01-23T08:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Saiyuki 1 | Kazuya Minekura / Kodansha Ltd. | 2020-02-18T08:00:00.000Z | 0 | 0 | |||||
| PRD_3WP3W3RWB950 | CNT_2MEJ77228YFG | Saiyuki CNT_3FBCD7B8SDT0 | CNT_3FBCD7B8SDT0 | 2 | 1 | 1 | Volume 3 | [] | Saiyuki 3 | Peering back into the past, we see the bonds formed in blood that connect together these four lawless desperados, and the deep wounds that still threaten to tear them apart as they continue on in their journey West. But can Sanzo's gang afford to keep fighting their inner demons with every yokai in Togenkyo on their tail? A sudden run-in with Kougaiji and his entourage, among the many dangers and temptations of the long road to Tenjiku, will test their resolve to settle scores both past and present. | 01KG9DAZYK44MB8HXK1MDTSR6F | 3.0 | 2020-10-20T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Saiyuki 3 | Kazuya Minekura / Kodansha Ltd. | 2020-11-17T08: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);