products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_2GZ2C86QQHPG"
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_0ZPCZWBYT1SG | CNT_1DPPTFN99S1G | The Hunters Guild: Red Hood CNT_2GZ2C86QQHPG | CNT_2GZ2C86QQHPG | 2 | 1 | 1 | Volume 3 | [] | The Hunters Guild: Red Hood, Vol. 3 | The final exam aboard the Ironworks reaches its climax! Velou's goal of getting everyone to pass requires all of the trainees to work together, but some remain reluctant. Then, things take a sudden, weird turn after the exam, when Cinderella and the Guild start making uncharacteristic moves. Not only that, the mayor, who Velou thought dead, returns and exposes the shocking truth about their world! | 01KGBHWHYJMPK7QNRHFVMX2KGJ | 3.0 | 2024-11-26T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | The Hunters Guild: Red Hood, Vol. 3 | RED HOOD © 2021 by Yuki Kawaguchi/SHUEISHA Inc. | 2024-11-26T08:00:00.000Z | 0 | 0 | |||||
| PRD_2710NDSVPWCG | CNT_3VHRD8YSV4YG | The Hunters Guild: Red Hood CNT_2GZ2C86QQHPG | CNT_2GZ2C86QQHPG | 2 | 1 | 1 | Volume 1 | [] | The Hunters Guild: Red Hood, Vol. 1 | In an isolated hamlet lives a boy named Velou who wants nothing more than to protect his beloved neighbors from the werewolf terrorizing the town. But even the town's mayor—its most skilled huntsman—is unable to handle the situation on his own anymore. In a desperate attempt to save his people, the mayor hires the Hunters Guild to exterminate the werewolf. But after the mayor bankrupts himself into affording the Guild's services, Velou and the citizens are disappointed when a little girl in a red hood named Grimm shows up instead of the big, strong hunter they were expecting. Velou is skeptical of Grimm's ability to handle the werewolf—surely the mayor has been scammed, right?! Will Velou and the hamlet ever live happily ever after? | 01KGBGNYR1VJ4MZBYN8D2557PC | 1.0 | 2024-11-26T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | The Hunters Guild: Red Hood, Vol. 1 | RED HOOD © 2021 by Yuki Kawaguchi/SHUEISHA Inc. | 2024-11-26T08:00:00.000Z | 0 | 0 | |||||
| PRD_2XZMG6T3R090 | CNT_2DCDNGGDE8H0 | The Hunters Guild: Red Hood CNT_2GZ2C86QQHPG | CNT_2GZ2C86QQHPG | 2 | 1 | 1 | Volume 2 | [] | The Hunters Guild: Red Hood, Vol. 2 | Hoping to join the Hunters Guild, Velou boards the mobile training facility known as the Ironworks. But things aren't all sunshine and rainbows. After three grueling months of nonstop training, he and the other examinees are about to face the most difficult trial of all—the debarkation exam! This time it's a game of cops and robbers, and the ones playing the role of the cops are none other than Grimm and Debonair, leaving the trainees no choice but to run for their lives as the robbers! Velou seems to have a plan up his sleeve, but will the other examinees be willing to trust him? | 01KGBHWHFBJXDKMC7G16DR2W5B | 2.0 | 2024-11-26T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PQM5BDYSMG0 | The Hunters Guild: Red Hood, Vol. 2 | RED HOOD © 2021 by Yuki Kawaguchi/SHUEISHA Inc. | 2024-11-26T08: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);