A Magic: The Gathering decklist.
tid
Timestamp-based ID
Properties
cards
array
of
ref
#card
Required
Array of cards in the decklist.
createdAt
string
datetime
Required
Timestamp when the decklist was created.
format
ref
#format
Optional
Format of the deck.
name
string
Required
Name of the decklist.
maxLength: 1280 bytesmaxGraphemes: 128 graphemesprimer
union
Optional
Deck primer with strategy, combos, and card choices.
updatedAt
string
datetime
Optional
Timestamp when the decklist was last updated.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"cards",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 1280,
"description": "Name of the decklist.",
"maxGraphemes": 128
},
"cards": {
"type": "array",
"items": {
"ref": "#card",
"type": "ref"
},
"description": "Array of cards in the decklist."
},
"format": {
"ref": "#format",
"type": "ref",
"description": "Format of the deck."
},
"primer": {
"refs": [
"com.deckbelcher.richtext#document",
"#primerUri",
"#primerRef"
],
"type": "union",
"description": "Deck primer with strategy, combos, and card choices."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the decklist was created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when the decklist was last updated."
}
}
},
"description": "A Magic: The Gathering decklist."
}