products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
2 rows where series_id = "CNT_0WH6019ED44G"
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_3K2H85ESFTRG | CNT_2A8EKK16PWBG | Pokémon: The Complete Pokémon Pocket Guide CNT_0WH6019ED44G | CNT_0WH6019ED44G | 2 | 1 | 1 | Volume 1 | [] | Pokémon: The Complete Pokémon Pocket Guide, Vol. 1 | This first volume of a two-book set, organized by Pokédex number, includes data on 442 Pokémon, from Bulbasaur to Spiritomb! Plus details on many regional, Gigantamax, and Mega Evolution forms! | 01KGBGKVCHRMVXKZCY2FHCQG1Q | 1.0 | 2024-11-26T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PZ1FZ4QK0N0 | Pokémon: The Complete Pokémon Pocket Guide, Vol. 1 | ©2024 Pokémon.©2021 Nintendo / Creatures Inc. / GAME FREAK inc. | 2024-11-26T08:00:00.000Z | 0 | 0 | |||||
| PRD_3Y88RWD5GDN0 | CNT_09NKA2WDAZE0 | Pokémon: The Complete Pokémon Pocket Guide CNT_0WH6019ED44G | CNT_0WH6019ED44G | 2 | 1 | 1 | Volume 2 | [] | Pokémon: The Complete Pokémon Pocket Guide, Vol. 2 | This second volume of a two-book set, organized by Pokédex number, includes data on 456 Pokémon, from Gible to Calyrex! Plus details on many regional, Gigantamax, and Mega Evolution forms! | 01KGBHFVCSTJMK7V4G5R0003J0 | 2.0 | 2024-11-26T08:00:00.000Z | VIZ Media LAB_15X2T7H1V07G | GEO_1PZ1FZ4QK0N0 | Pokémon: The Complete Pokémon Pocket Guide, Vol. 2 | ©2024 Pokémon.©2021 Nintendo / Creatures Inc. / GAME FREAK inc. | 2024-11-26T08: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);