products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_1RJVKCHWDGTG"
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_076DNHHFNZ6G | CNT_1B13M8J20B6G | The Evil Secret Society of Cats CNT_1RJVKCHWDGTG | CNT_1RJVKCHWDGTG | 2 | 1 | 1 | Volume 2 | [] | The Evil Secret Society of Cats Vol. 2 | Ever wonder if all the little things cats do to distract, disrupt, and frustrate you in your daily life are actually part of a grand, evil conspiracy? Well, the answer is yes! Feline Commander and the Evil Secret Society of Cats return with more dastardly plots, while Doggoman and his little sister valiantly strive to protect humanity. In this volume you'll also meet Woofbot and Kinkuma, leader of the hamster gang! | THE PAWFUL TRUTH | 01KGB2SZ97V2F8FK44Q1Y087Z1 | 2.0 | 2022-12-16T08:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Evil Secret Society of Cats Vol. 2 | pandania 2021 | 2023-01-31T08:00:00.000Z | 0 | 0 | ||||
| PRD_20YHBVDVHQ9G | CNT_38DQYTTP0710 | The Evil Secret Society of Cats CNT_1RJVKCHWDGTG | CNT_1RJVKCHWDGTG | 2 | 1 | 1 | Volume 3 | [] | The Evil Secret Society of Cats Vol. 3 | Distracted by the charms of toe beans and tummy fur...productivity halted by a fuzzy weight on your lap or keyboard...precious belongings knocked off their shelves...cats are adorable menaces, out to bring humanity to its knees. Is there any way to escape these evil feline clutches?! | THE FELINE MENACE | 01KH3EHE92EB7MWKG68NEC80NH | 3.0 | 2023-06-21T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Evil Secret Society of Cats Vol. 3 | pandania 2022 | 2023-07-18T07:00:00.000Z | 0 | 0 | ||||
| PRD_2CW4AV7JRP5G | CNT_3CTPAQF7A3G0 | The Evil Secret Society of Cats CNT_1RJVKCHWDGTG | CNT_1RJVKCHWDGTG | 2 | 1 | 1 | Volume 1 | [] | The Evil Secret Society of Cats Vol. 1 | "We will teach humans to fear the feline race!" They may seem cute and cuddly, but these kitties are up to no good! Under the direction of the purple-caped Feline Commander, the Evil Secret Society of Cats schemes against humanity in a series of humorous stories as adorable as they are diabolical. After all, the complex nature of cats is part of their charm. | THERE'S A MEW VILLAIN IN TOWN | 01KGAK12887VTK92XP02YBWCDH | 1.0 | 2022-09-15T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PQM5BDYSMG0 | The Evil Secret Society of Cats Vol. 1 | pandania 2020 | 2022-10-11T07: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);