Data model
Subtypes
The subtype vocabulary, grouped by the card type each one belongs to.
2 columns. Every value below is generated from the provenance registry.
| Field | Type | Source | Updated | Written by |
|---|---|---|---|---|
| name | string | scryfall | on set release | scripts/seed-types.ts (catalogs) |
| A subtype, e.g. Goblin, Aura, Equipment. | ||||
| category | string | scryfall | on set release | scripts/seed-types.ts (catalogs) |
| Which card type the subtype belongs to (creature, land, artifact, …). 'unknown' where Scryfall's catalogs do not say. | ||||
TypeScript model
interface mtg_subtypes {
name: string
category: string
}