products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_322KBM2W0NXG"
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_1KDS5801KJSG | CNT_1ZXKC8EBCKJ0 | The Knight Cartoonist and Her Orc Editor CNT_322KBM2W0NXG | CNT_322KBM2W0NXG | 2 | 1 | 1 | Volume 3 | [] | The Knight Cartoonist and Her Orc Editor 3 | After untold trials and tribulations, the first volume of Annelise's manga series is finally hitting bookstores! Sadly, manga often has a way of not selling the way you want it to -- and as if that didn't damage her armor enough, her mom's threatening to “punish” her unless she's a full-fledged A-list artist! Facing mortal danger, the only-slightly-less-serious threat of series cancellation, and a small horde of combative editors and artists around her, this final volume features all the agonies of a comic-centric life rolled into one! | 01KGA7M639R5FFTYFCJWJJGF9Y | 3.0 | 2019-10-03T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | The Knight Cartoonist and Her Orc Editor 3 | (C) Indoso / Takafumi Sato / Kodansha Ltd. | 2019-10-08T07:00:00.000Z | 0 | 0 | |||||
| PRD_2DR1W338N7V0 | CNT_3M7N1HRMJJVG | The Knight Cartoonist and Her Orc Editor CNT_322KBM2W0NXG | CNT_322KBM2W0NXG | 2 | 1 | 1 | Volume 2 | [] | The Knight Cartoonist and Her Orc Editor 2 | Thanks to orcish editor Yeld's support, the knight Annelise has finally landed her first regular manga series. But between writer's block, her duties as a knight, and pirated copies (literally) growing on trees, Annelise's enemies are as formidable as ever in this oddly realistic “fantasy” manga documentary! | 01KGA7FTPQ6C7K26BHPCT6RH0V | 2.0 | 2019-09-03T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | The Knight Cartoonist and Her Orc Editor 2 | (C) Indoso / Takafumi Sato / Kodansha Ltd. | 2019-09-10T07:00:00.000Z | 0 | 0 | |||||
| PRD_3X8ZS892Q4CG | CNT_3HFV81MZD0H0 | The Knight Cartoonist and Her Orc Editor CNT_322KBM2W0NXG | CNT_322KBM2W0NXG | 2 | 1 | 1 | Volume 1 | [] | The Knight Cartoonist and Her Orc Editor 1 | Yeld, an orc sick of life in his dark-fantasy realm, decides to move to Tokyo and become a manga editor. One day, he's visited by a full-time armored swordswoman, part-time aspiring manga artist--one who gets practically suicidal whenever her work gets rejected! Between her, a tentacle monster summoned as an assistant, and a slime girl with all kinds of “helpful” manga tools, there's never been a stranger pack of creators! It's the most realistic(?) depiction of the manga industry yet! | 01KGA62PXAPGCCH23QT8W810ST | 1.0 | 2019-08-09T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | The Knight Cartoonist and Her Orc Editor 1 | (C) Indoso / Takafumi Sato / Kodansha Ltd. | 2019-08-13T07: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);