Skip to content
On This Page

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.

Model Overview

TypeScript
{
  [key: string]: Record<string, string[]>
}

Example Model

Here is an example model with a reduced payload:

JSON
{
  "card": {
    "colorIdentity": [
      "B",
      "G",
      "R",
      "U",
      "W"
    ]
  }
}