products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_2MD4ZV7V97DG"
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_0NST375Z2R5G | CNT_1M785YW306J0 | Even a Replica Can Fall in Love CNT_2MD4ZV7V97DG | CNT_2MD4ZV7V97DG | 2 | 2 | 1 | Volume 4 | [] | Even a Replica Can Fall in Love, Vol. 4 | IT’S TIME FOR NAO TO MAKE UP HER MIND. Sunao left the choice up to me. Will I live as myself, or will I go back inside her? I asked for a month to decide, but as Christmas approaches, I already have my answer. I’m a replica created to serve my original—what else can I do? But is that really what I want deep down in my heart? As time runs out, I must face my true feelings and choose: Sunao or Aki? | 01KP0BBXZQ52AAZ254PGA380X9 | 4.0 | 2025-08-22T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1PQM5BDYSMG0 | Even a Replica Can Fall in Love, Vol. 4 | 2026-02-10T08:00:00.000Z | 0 | 0 | ||||||
| PRD_1962G9S8M120 | CNT_2R64V9GSK980 | Even a Replica Can Fall in Love CNT_2MD4ZV7V97DG | CNT_2MD4ZV7V97DG | 2 | 2 | 1 | Volume 3 | [] | Even a Replica Can Fall in Love, Vol. 3 | WHAT ARE REPLICAS, AND WHERE DO THEY COME FROM? I’m a replica—a copy who must fill in for her original whenever she’s asked. But now I’ve lost my purpose, and Sunao, my original, is starting to scare me. I can’t tell what she’s thinking at all. While she’s away on a school trip, Aki and I visit Ryou’s hometown, and I finally begin to unravel the mystery of my creation. But am I ready to face the truth of what I am and the secrets Sunao has been keeping from me? | 01KG9R782NXMY8EJDR861051J4 | 3.0 | 2024-11-20T08:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1PQM5BDYSMG0 | Even a Replica Can Fall in Love, Vol. 3 | 2025-07-15T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1RBY7FPXAD6G | CNT_29A1THW4KH6G | Even a Replica Can Fall in Love CNT_2MD4ZV7V97DG | CNT_2MD4ZV7V97DG | 2 | 2 | 1 | Volume 2 | [] | Even a Replica Can Fall in Love, Vol. 2 | When Sunao asks me to take over for her at school for the indefinite future, I'm so happy I'm not sure what to do. I'm just a replica—a stand-in for my original—and this is more than I could have ever hoped for. Now I can put my all into saving the Literature Club from being disbanded, get even closer to Aki, and enjoy the day-to-day of a regular student. It's time to spend an unforgettable autumn with the boy I love most. | 01KGBBBZHMG2BTHNQP6AJM2F0D | 2.0 | 2024-08-14T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1PQM5BDYSMG0 | Even a Replica Can Fall in Love, Vol. 2 | 2025-01-21T08:00:00.000Z | 0 | 0 | ||||||
| PRD_34Z0BTF9PZW0 | CNT_3YDWW2T80TY0 | Even a Replica Can Fall in Love CNT_2MD4ZV7V97DG | CNT_2MD4ZV7V97DG | 2 | 2 | 1 | Volume 1 | [] | Even a Replica Can Fall in Love, Vol. 1 | HER FACE MAY BE SUNAO’S, BUT HER FEELINGS ARE HER OWN.When Sunao is sick, or has a test to take, or simply doesn’t feel like going out, I take her place. I’m her replica, her stand-in. My purpose is to help her, to do whatever she asks and nothing more. But when I fall in love, everything changes. I start putting my hair half-up, so the boy I like knows it’s me, and spend time with him as myself. I’m her replica, and everything I have is borrowed. But my heart is mine alone. | 01KH3P92P4M6SCWGPY196Y5S10 | 1.0 | 2024-04-02T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1PQM5BDYSMG0 | Even a Replica Can Fall in Love, Vol. 1 | 2024-09-17T07: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);