Enum Values
The Enum Values Abstract Model describes the properties that are direct possible values of other properties in specific Data Models. Generally, this data is used for documentation, but is also available to the public.
- Parent file: EnumValues
- Parent model:
data
Model Overview
json
{
// Enum model name
"<Enum Model>": {
// Enumerable property name
"<Property Key>": string[],
... // More properties
},
... // More models
}
Example Model
json
{
"card": {
"borderColor": [
"black",
"borderless",
"gold",
"silver",
"white"
],
"colorIdentity": [
"B",
"G",
"R",
"U",
"W"
],
... // More properties
},
... // More models
}