products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
5 rows where series_id = "CNT_2D3V5X4TVE90"
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_0A4C3FGCWAAG | CNT_202XSA87RT10 | It Takes Two Tomorrow, Too CNT_2D3V5X4TVE90 | CNT_2D3V5X4TVE90 | 2 | 1 | 1 | Volume 3 | [] | It Takes Two Tomorrow, Too Volume 3 | Despite the occasional unexpected, Yuya and Rio are more or less enjoying their daily life together. On an invitation from Yuya's mother, Rio goes to the theater with the Aida family. It's been a while since she's seen them, so she's a bit nervous... | 01KGAZSMWRY1ZQ4AQWKNPCEAA0 | 3.0 | 2024-03-01T08:00:00.000Z | One Peace Books LAB_0KDKBQKJQBCG | GEO_1PQM5BDYSMG0 | It Takes Two Tomorrow, Too Volume 3 | 2024-04-04T07:00:00.000Z | 0 | 0 | ||||||
| PRD_0H8SWDCTN3D0 | CNT_0NKM09YEGNX0 | It Takes Two Tomorrow, Too CNT_2D3V5X4TVE90 | CNT_2D3V5X4TVE90 | 2 | 1 | 1 | Volume 5 | [] | It Takes Two Tomorrow, Too Volume 5 | Yuya finally succeeds in proposing to Rio! Once formally engaged, the pair visit each other's parents to make the announcement, plan their photo wedding, and move forward together as a married couple. From cohabitation to newlywed life. The emotional final volume is here! | 01KGBE0RSB4BGVX03B74XDH4XB | 5.0 | 2024-09-27T07:00:00.000Z | One Peace Books LAB_0KDKBQKJQBCG | GEO_1PQM5BDYSMG0 | It Takes Two Tomorrow, Too Volume 5 | 2024-09-28T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1KC2JG03Y8ZG | CNT_193YCK9QXAS0 | It Takes Two Tomorrow, Too CNT_2D3V5X4TVE90 | CNT_2D3V5X4TVE90 | 2 | 1 | 1 | Volume 4 | [] | It Takes Two Tomorrow, Too Volume 4 | Yuya is enjoying a fulfilling life with Rio—vacationing together, celebrating his birthday at home—and he's finally decided to propose. Preparations go smoothly, but he can't find the right time to pop the question... | 01KH3QREVGVVJRBW4MEAAX5737 | 4.0 | 2024-04-26T07:00:00.000Z | One Peace Books LAB_0KDKBQKJQBCG | GEO_1PQM5BDYSMG0 | It Takes Two Tomorrow, Too Volume 4 | 2024-06-04T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1V7Q1BS40NEG | CNT_1GP2WKRE401G | It Takes Two Tomorrow, Too CNT_2D3V5X4TVE90 | CNT_2D3V5X4TVE90 | 2 | 1 | 1 | Volume 2 | [] | It Takes Two Tomorrow, Too Volume 2 | Yuya and Rio have gotten the hang of living together and are more or less content with their daily life. Then one day Rio returns home to find Yuya arguing with a woman she doesn't know... | 01KGAT8SFTXZXD54HFK168Z5GE | 2.0 | 2023-11-14T08:00:00.000Z | One Peace Books LAB_0KDKBQKJQBCG | GEO_1PQM5BDYSMG0 | It Takes Two Tomorrow, Too Volume 2 | 2023-12-26T08:00:00.000Z | 0 | 0 | ||||||
| PRD_31PB30RFM4Z0 | CNT_2EQ2DS70DYG0 | It Takes Two Tomorrow, Too CNT_2D3V5X4TVE90 | CNT_2D3V5X4TVE90 | 2 | 1 | 1 | Volume 1 | [] | It Takes Two Tomorrow, Too Volume 1 | Yuya Aida (25) and Rio Aihara (28) are in their second month of living together. More than lovers but less than married, they're still more or less content. | 01KGASRTNKVW4T5YSZGXNQRXKD | 1.0 | 2023-09-29T07:00:00.000Z | One Peace Books LAB_0KDKBQKJQBCG | GEO_1PQM5BDYSMG0 | It Takes Two Tomorrow, Too Volume 1 | 2023-10-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);