products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_3944RN7VDPA0"
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_0N11DQN4DXYG | CNT_2JVJN8MY1WW0 | Messiah -CODE EDGE- CNT_3944RN7VDPA0 | CNT_3944RN7VDPA0 | 2 | 1 | 1 | Volume 3 | [] | Messiah -CODE EDGE- 3 | Locked in slumber by a dream so good that he refuses to wake up, Sakura cadet Mayo Miike sees what could have been. Once the deity of a religious sect, Mayo was worshipped in times past before everything changed. Now, he's hated by a former follower who fails to recognize him-the one person who may be able to reach his heart and wake him-his Messiah, Kotaro Yugi. This final release of the Messiah -Code Edge- series features dozens of full-color illustrations of your favorite Messiah characters drawn by Akira Minazuki for special events over the years. | 01KH3EZP1BHAPW698ZG91461WS | 3.0 | 2023-07-25T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Messiah -CODE EDGE- 3 | Akira Minazuki, Madoka Takadono, Messiah Project/Kodansha Ltd. | 2023-08-15T07:00:00.000Z | 0 | 0 | |||||
| PRD_14DX9EG7B1GG | CNT_15NMGZ6C6GA0 | Messiah -CODE EDGE- CNT_3944RN7VDPA0 | CNT_3944RN7VDPA0 | 2 | 1 | 1 | Messiah -CODE EDGE- | [] | Messiah -CODE EDGE- | Though these young men arrived at the Church broken, ruined by their tragic pasts, the bonds they've built with their partner-their Messiah-will never be shattered. From children at an orphanage to spies for a secret agency, Mamoru and Kaito had always been together...until an incident caused Kaito to lose his physical form. Their fellow Sakura agents, Ryo and Itsuki, survived grueling circumstances that would've overwhelmed most people. And Kotaro, forsaken by society for a murder he didn't commit, ended up in a reclusive religious sect whose deity changed his life...and continues to do years later as his Messiah, though he doesn't know it yet. | 01KGB7RSY55SN9YZTBWQ7HNK2H | 2.0 | 2023-06-27T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Messiah -CODE EDGE- | Akira Minazuki, Madoka Takadono, Messiah Project/Kodansha Ltd. | 2023-07-18T07:00:00.000Z | 0 | 0 | |||||
| PRD_22S4FNK7G490 | CNT_28X08V71X730 | Messiah -CODE EDGE- CNT_3944RN7VDPA0 | CNT_3944RN7VDPA0 | 2 | 1 | 1 | Volume 1 | [] | Messiah -CODE EDGE- 1 | Mysterious, handsome young men working as spy-pairs for a secret agency, the Church, are forbidden to love anyone but their partners. If they're to survive-not only war, but the ghosts of their tragic pasts-they must rely on one another to be there...because each other is all they have. Follow Eiri, Haku, Soma, and Shusuke as they battle their inner demons with the help of their partners in this peek into the Messiah Project universe. | 01KGB6QRFN81WA3TQGPMVRTY8D | 1.0 | 2023-05-30T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | Messiah -CODE EDGE- 1 | Akira Minazuki, Madoka Takadono, Messiah Project/Kodansha Ltd. | 2023-06-20T07: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);