Data model
Printing prices (daily)
Daily TCGplayer price points per printing, accumulated for history and charts. TCGplayer only. No other vendor is tracked over time.
4 columns. Every value below is generated from the provenance registry.
| Field | Type | Source | Updated | Written by |
|---|---|---|---|---|
| printing_id | string | mtgjson | daily | scripts/ingest-mtgjson.ts (prices) |
| FK to card_printings — resolved from mtgjson_uuid at ingest. | ||||
| finish | string | mtgjson | daily | scripts/ingest-mtgjson.ts (prices) |
| normal, foil, or etched. | ||||
| price_date | string | mtgjson | daily | scripts/ingest-mtgjson.ts (prices) |
| The day this point was quoted. | ||||
| price_cents | number | mtgjson | daily | scripts/ingest-mtgjson.ts (prices) |
| TCGplayer retail USD in integer cents (primary chart vendor). | ||||
TypeScript model
interface printing_price_daily {
printing_id: string
finish: string
price_date: string
price_cents: number
}