···3838 @maxLength(640)
3939 scalar CardTag extends string;
40404141+ /** Which section of the deck this card belongs to. Extensible to support format-specific sections. */
4242+ @maxGraphemes(64)
4343+ @maxLength(640)
4444+ union Section {
4545+ "mainboard",
4646+ "sideboard",
4747+ "maybeboard",
4848+ "commander",
4949+ string,
5050+ }
5151+4152 /** A card entry in a decklist. */
4253 model Card {
4354 /** Reference to the card (scryfall printing + oracle card). */
···51625263 /** Which section of the deck this card belongs to. Extensible to support format-specific sections. */
5364 @required
5454- section: "mainboard" | "sideboard" | "maybeboard" | "commander" | string;
6565+ section: Section;
55665667 /** User annotations for this card in this deck (e.g., "removal", "wincon", "ramp"). */
5768 @maxItems(128)