products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_0FPSEVN49C40"
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_0J7T0DF9010G | CNT_33FRW00DVN4G | Brunhild the Dragonslayer CNT_0FPSEVN49C40 | CNT_0FPSEVN49C40 | 2 | 1 | 1 | Volume 1 | [] | Brunhild the Dragonslayer, Vol. 1 | Blessed by the divine, Eden is an idyllic island protected from outside harm by its guardian, the silver dragon. One fateful day, the dragon finds a small girl on the island’s shores. Teaching her love and compassion over hatred, he raises her as his own. But their time together can’t remain peaceful forever—Eden, rich in resources, is a prime target for humanity’s advancing military might. In the face of violence and hostility, will the girl heed the dragon’s words? And can they defend their coveted paradise? | 01KGBBG7GQEJFHRWCWDPFM0BYQ | 1.0 | 2024-08-06T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Brunhild the Dragonslayer, Vol. 1 | 2024-11-19T08:00:00.000Z | 0 | 0 | ||||||
| PRD_1XSQS0AK8AP0 | CNT_30Q4XY8GVWD0 | Brunhild the Dragonslayer CNT_0FPSEVN49C40 | CNT_0FPSEVN49C40 | 2 | 1 | 1 | Volume 2 | [] | Brunhild the Dragonslayer, Vol. 2 | When Brunhild’s beloved dragon is killed by the Imperial Army—a force led by the man who turns out to be her father—the distraught girl is captured and dragged back to the empire as a member of the heroic Siegfried family. Waiting for her chance to take revenge, Brunhild learns all she can about the nation and military she’s been forced to join. But as Brunhild lives among Norvelland’s people, something in her may be beginning to change. And after a rocky reunion with her brother, Sigurd, she starts to open up to him… | 01KGBGF8V4PTQ0FWMX0CHA68JM | 2.0 | 2024-11-11T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Brunhild the Dragonslayer, Vol. 2 | 2025-04-29T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1ZNS4ZWDSNT0 | CNT_3CR5YCTHKS5G | Brunhild the Dragonslayer CNT_0FPSEVN49C40 | CNT_0FPSEVN49C40 | 2 | 1 | 1 | Volume 3 | [] | Brunhild the Dragonslayer, Vol. 3 | Thanks to Brunhild’s heroic efforts, the group of dragons that suddenly attacked the Norvelland Empire’s capital, Nibelungen, is somehow driven back—but not before the city suffers heavy losses. Brunhild herself is gravely injured during the battle, and a worried Sigurd pays her a visit. There, Brunhild reveals the unimaginable truth behind the hellish assault… | 01KG9QG3T5E0N5FWT9XFMA21YE | 3.0 | 2025-04-07T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Brunhild the Dragonslayer, Vol. 3 | 2025-08-26T07:00:00.000Z | 0 | 0 | ||||||
| PRD_37B4XFYN55FG | CNT_2YKAX67SKDWG | Brunhild the Dragonslayer CNT_0FPSEVN49C40 | CNT_0FPSEVN49C40 | 2 | 1 | 1 | Volume 4 | [] | Brunhild the Dragonslayer, Vol. 4 | In the aftermath of the draconic onslaught, Brunhild is more beloved than ever, and the public sees her as a valiant hero. Only her brother, Sigurd, knows the brutal truth, however: It was all orchestrated by Brunhild as the first step in taking revenge on their birth father, Sigebert Siegfried! Now in possession of the dragonslaying power Balmung, Sigurd attempts to stop Brunhild from carrying out her plan. Tears fall—for love and sorrow and hatred—in this final volume! | 01KH2SMVZ3CZ657JWA9JA6YEYS | 4.0 | 2025-10-21T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Brunhild the Dragonslayer, Vol. 4 | 2026-02-24T08: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);