products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_22RF3DXKE250"
This data as json, CSV (advanced)
Suggested facets: copyright, 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_0RED4F276QAG | CNT_1CXFNFGH8A9G | That Wolf-Boy is Mine! CNT_22RF3DXKE250 | CNT_22RF3DXKE250 | 2 | 1 | 1 | Volume 1 | [] | That Wolf-Boy is Mine! Volume 1 | MONSTER MISCHIEF After some traumatic experiences, Komugi Kusunoki transferred from the city to start a new life in rural Hokkaido. But on her first day of school, the school heartthrob Y? ?gami blurts out, ""You smell good!"" Despite the hijinks, Komugi tries to adjust to her new school, but it’s not long before she stumbles across Y? dozing off under a tree. When she attempts to wake him up, he transformed…into a wolf?! It turns out that Y? is one of many other eccentric boys in her class year?and she’s the only one who knows their secret…! | 01KG935JAM5920WS7BZKWXJG5A | 1.0 | 2016-10-25T07:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | That Wolf-Boy is Mine! Volume 1 | (C) Yoko Nogiri / Kodansha Ltd. | 2016-10-25T07:00:00.000Z | 0 | 0 | |||||
| PRD_1FG489GG06Y0 | CNT_16JMNCFDP950 | That Wolf-Boy is Mine! CNT_22RF3DXKE250 | CNT_22RF3DXKE250 | 2 | 1 | 1 | Volume 2 | [] | That Wolf-Boy is Mine! Volume 2 | Komugi’s not sure what to expect when her family moves to the remote northern island of Hokkaido, and she starts at a new high school. But she certainly didn’t expect a boy to come up to her and say, ""Gee… you smell good, somehow!"" That boy is Yu Ogami, and Komugi finds herself strangely drawn to him. But when she sees him in an unguarded moment, she discovers he’s a werewolf! Now she has a choice to make: to keep his secret, or to ask for help and risk angering a wolf-boy? | 01KG9YMWENKE0VSW2R5F6T2FQG | 2.0 | 2016-10-20T15:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | That Wolf-Boy is Mine! Volume 2 | (c) Yoko Nogiri/ Kodansha Ltd. | 2016-11-04T15:00:00.000Z | 0 | 0 | |||||
| PRD_24YJ2BZYB9VG | CNT_0W9BSYXYWBRG | That Wolf-Boy is Mine! CNT_22RF3DXKE250 | CNT_22RF3DXKE250 | 2 | 1 | 1 | Volume 3 | [] | That Wolf-Boy is Mine! Volume 3 | JUST FRIENDS After Rin shares some profound insights with Komugi about her crush,she learns it’s easier to bottle up her feelings for the wolf-boy,Yu. As Komugi gets to really know Rin the fox,his cold exterior slowly melts away?and Yu can’t help but be concerned. In order to let someone new into his heart,Yu struggles to confront his emotional trauma from the past. But by the time Yu realizes his true emotions,something unthinkable has happened to Komugi… | 01KG9YRJX899Z5HNGZM04W4PB3 | 3.0 | 2016-12-26T15:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | That Wolf-Boy is Mine! Volume 3 | (C) Yoko Nogiri / Kodansha Ltd. | 2017-01-09T15:00:00.000Z | 0 | 0 | |||||
| PRD_3075ZV2E244G | CNT_2QQCNBNEVQFG | That Wolf-Boy is Mine! CNT_22RF3DXKE250 | CNT_22RF3DXKE250 | 2 | 1 | 1 | Volume 4 | [] | That Wolf-Boy is Mine! Volume 4 | Komugi's not sure what to expect when her family moves to the remote northern island of Hokkaido, and she starts at a new high school. But she certainly didn't expect a boy to come up to her and say, ""Gee… you smell good, somehow!"" That boy is Yu Ogami, and Komugi finds herself strangely drawn to him. But when she sees him in an unguarded moment, she discovers he's a werewolf! Now she has a choice to make: to keep his secret, or to ask for help and risk angering a wolf-boy? | 01KG9YX17J716B8BQ8BZA7ZJGN | 4.0 | 2017-02-20T15:00:00.000Z | Kodansha LAB_0ZM7YN9KHCT0 | GEO_1PKAG51AEAQG | That Wolf-Boy is Mine! Volume 4 | (C) Yoko Nogiri / Kodansha Ltd. | 2017-03-21T05: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);