MTG Decklist
Record Key
any
Any valid record key
Properties
cards
array
of
ref
#cardEntry
Required
Cards included in this deck
minLength: 1 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
name
string
Required
Name of deck
maxLength: 512 bytesminLength: 1 bytesmaxGraphemes: 128 graphemesView raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"cards",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 512,
"minLength": 1,
"description": "Name of deck",
"maxGraphemes": 128
},
"cards": {
"type": "array",
"items": {
"ref": "#cardEntry",
"type": "ref"
},
"minLength": 1,
"description": "Cards included in this deck"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "MTG Decklist"
}