products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_3KA15WZW2EM0"
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_0P9NQ4845B40 | CNT_1YCH5PN54B0G | Super Morning Star CNT_3KA15WZW2EM0 | CNT_3KA15WZW2EM0 | 2 | 1 | 1 | Volume 3 | [] | Super Morning Star 3 | As time marches on for Kaido and Honda, the cracks in their post-high school life together grow bigger and bigger. They each try to chase their individual dreams, but miscommunication and arguments always seem to follow closely behind. While Kaido keeps up a brave face, Honda only closes off himself more, until he finally shuts Kaido out entirely... | 01KG9PSG9JG46FHVCACH5WSVN2 | 3.0 | 2024-03-05T08:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Super Morning Star 3 | Kara Aomiya/Ichijinsha Inc. | 2024-03-26T07:00:00.000Z | 0 | 0 | |||||
| PRD_15QAHVB715AG | CNT_31WMSWPPYRE0 | Super Morning Star CNT_3KA15WZW2EM0 | CNT_3KA15WZW2EM0 | 2 | 1 | 1 | Volume 4 | [] | Super Morning Star 4 | After persevering through some of the most difficult challenges in their relationship, Honda and Kaido affirm their commitment to each other. Between overseas work trips, vacations with friends, and even meeting each other's families, they are ready to face the joys and obstacles life has for them-together. It's full steam ahead in this sweet conclusion! | 01KGBA3BE6QY5ZHDX19EYD149E | 4.0 | 2024-06-04T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Super Morning Star 4 | Kara Aomiya/Ichijinsha Inc. | 2024-06-25T07:00:00.000Z | 0 | 0 | |||||
| PRD_37092D1ZJJ30 | CNT_0JAGF3MBJCW0 | Super Morning Star CNT_3KA15WZW2EM0 | CNT_3KA15WZW2EM0 | 2 | 1 | 1 | Volume 2 | [] | Super Morning Star 2 | Now that they've graduated high school, Honda and Kaido are living together. But things don't go exactly as planned! With Honda studying at college and Kaido pursuing his career as a suit actor, the two have a hard time lining up their schedules. In fact, they never seem to have time to do anything more than kissing. Our couple's love nest has turned into a comedy of errors! | 01KGAT8M44C1RTT1QE1WGM1TZP | 2.0 | 2023-12-05T08:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Super Morning Star 2 | Kara Aomiya/Ichijinsha Inc. | 2023-12-26T08:00:00.000Z | 0 | 0 | |||||
| PRD_3E1VPA3XEK70 | CNT_0ZKSVA952E40 | Super Morning Star CNT_3KA15WZW2EM0 | CNT_3KA15WZW2EM0 | 2 | 1 | 1 | Volume 1 | [] | Super Morning Star 1 | When a classmate finds out he's secretly a sentai star, Kaido's precious life as a regular high schooler is in danger of being stolen, and so's his heart, in this BL rom-com for fans of Hitorijime My Hero and Sasaki and Miyano! At high school, Kaido seems to be a scary delinquent, but he's leading a second life as the star of a sentai superhero live show! When sentai superfan classmate Honda discovers Kaido's secret, Kaido will stop at nothing to make sure it doesn't get out, but despite himself, the charismatic performer finds himself falling for his biggest fan... | 01KH3G4ZJN4MR6VRVB795DX0BQ | 1.0 | 2023-09-05T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Super Morning Star 1 | Kara Aomiya/Ichijinsha Inc. | 2023-09-26T07: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);