Data model
Card subtypes
Which subtypes each card has, parsed from its type line.
2 columns. Every value below is generated from the provenance registry.
| Field | Type | Source | Updated | Written by |
|---|---|---|---|---|
| card_id | string | calculated | on write | database |
| Oracle-level card (FK → cards.id). | ||||
| subtype | string | calculated | on write | database |
| One subtype parsed from the card's type line; a card contributes one row per subtype. | ||||
TypeScript model
interface card_subtypes {
card_id: string
subtype: string
}