products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_2BWG0NERK3Z0"
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_2ZJHPJ7YYDPG | CNT_09NG4YQ32WN0 | The Knight Captain is the New Princess-to-Be CNT_2BWG0NERK3Z0 | CNT_2BWG0NERK3Z0 | 2 | 1 | 1 | Volume 3 | [] | The Knight Captain is the New Princess-to-Be Vol. 3 | Back from boarding school, Chris visits her family home with Leo. Urged on by the king, the two announce their marriage. Chris's family is thrilled, but when her father urges her to quit being a knight, an unexpected father-daughter fight breaks out! | THE THINGS WE DO FOR LOVE | 01KGAY6K83B130T41HBFW61KM2 | 3.0 | 2024-02-19T08:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | The Knight Captain is the New Princess-to-Be Vol. 3 | Yasuko Yamaru 2022 | 2024-03-12T07:00:00.000Z | 0 | 0 | ||||
| PRD_37KY189HKBCG | CNT_3TH3GW9XZ6FG | The Knight Captain is the New Princess-to-Be CNT_2BWG0NERK3Z0 | CNT_2BWG0NERK3Z0 | 2 | 1 | 1 | Volume 1 | [] | The Knight Captain is the New Princess-to-Be Vol. 1 | Christina, a.k.a. "Lady Chris," was born into a noble family and treated more or less like a boy growing up. Now a dashing young woman, Chris is not only captain of the imperial guards--she personally protects Prince Leonardo, who has been a dear friend since childhood. When his father, the king, demands he find a suitable girl to marry, Leo insists that he's already found one: Chris! Chris is shocked, but figures that Leo doesn't really love her like that; it's probably just some ploy to keep the king happy. Chris decides to play along, but as the charade goes on, she starts to wonder if maybe her princely pal has actually fallen for her! | A Fake Engagement, A Real Romance! | 01KG9P1G6WD1WMQ3RQTRFVYFN9 | 1.0 | 2023-08-17T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | The Knight Captain is the New Princess-to-Be Vol. 1 | Yasuko Yamaru 2020 | 2023-08-29T07:00:00.000Z | 0 | 0 | ||||
| PRD_3EVRE20KGDY0 | CNT_0TTM5P2M80Y0 | The Knight Captain is the New Princess-to-Be CNT_2BWG0NERK3Z0 | CNT_2BWG0NERK3Z0 | 2 | 1 | 1 | Volume 4 | [] | The Knight Captain is the New Princess-to-Be Vol. 4 | Having returned to the capital, Chris and Leo begin planning for the wedding! Everything seems to be going well, but one day the king suddenly announces that the second prince, Leo's younger brother, will be ascending to the throne. With their wedding now canceled, will the happy couple ever make it to the altar? | THE COUNTDOWN TO THE WEDDING BEGINS! | 01KGBBX4BPJXD7DD5GP4DWJGM4 | 4.0 | 2024-07-12T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | The Knight Captain is the New Princess-to-Be Vol. 4 | © Yasuko Yamaru 2023 | 2024-08-06T07:00:00.000Z | 0 | 0 | ||||
| PRD_3V99B2HD0J90 | CNT_3KMPJ1S1YD60 | The Knight Captain is the New Princess-to-Be CNT_2BWG0NERK3Z0 | CNT_2BWG0NERK3Z0 | 2 | 1 | 1 | Volume 2 | [] | The Knight Captain is the New Princess-to-Be Vol. 2 | In order to support Prince Leo, Chris agrees to officially take his hand in marriage. But the other nobles are not fans of the union, and to mollify them Chris gets sent to a boarding school to become more "ladylike." Unfortunately for her, her fellow classmates are young ladies intent on marrying the prince themselves! Chris might be hot stuff on the battlefield, but is she prepared for this kind of warfare?! | SCHOOL OF LOVE | 01KGASWWN07SYMEDSQANXTC1PP | 2.0 | 2023-10-12T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | The Knight Captain is the New Princess-to-Be Vol. 2 | Yasuko Yamaru 2021 | 2023-11-21T08: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);