cards.openstacks.mtg.printing

openstacks.cards

Documentation

A specific printing of a Magic: The Gathering card

main record

A specific printing of a Magic: The Gathering card

Record Key any Any valid record key

Properties

artist string Optional

Artist name

borderColor string Optional

Border color

Known values: black, white, borderless, silver, gold
card string at-uri Required

AT URI reference to the card record

collectorNumber string Required

Collector number within the set

createdAt string datetime Optional

When this record was created

digital boolean Optional

Whether this is a digital-only card

finishes array of string Optional

Available finishes, e.g. ['nonfoil', 'foil', 'etched']

flavorText string Optional

Flavor text

foil boolean Optional

Available in foil

frame string Optional

Card frame version, e.g. '2015', '1993'

fullArt boolean Optional

Whether this is a full-art card

games array of string Optional

Games this printing exists in, e.g. ['paper', 'mtgo', 'arena']

illustrationId string Optional

Scryfall illustration_id - unique per artwork

imageUris ref #imageUris Optional

URLs to card images

nonfoil boolean Optional

Available in non-foil

promo boolean Optional

Whether this is a promotional printing

rarity string Optional

Card rarity

Known values: common, uncommon, rare, mythic, special, bonus
releasedAt string datetime Optional

Release date

reprint boolean Optional

Whether this is a reprint

scryfallId string Required

Scryfall id - unique per printing

setCode string Required

Set code, e.g. 'msc', 'lea'

setName string Optional

Full set name, e.g. 'Marvel Super Heroes Commander'

setType string Optional

Set type, e.g. 'commander', 'core', 'expansion'

textless boolean Optional

Whether this is a textless printing

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "card",
      "scryfallId",
      "setCode",
      "collectorNumber"
    ],
    "properties": {
      "card": {
        "type": "string",
        "format": "at-uri",
        "description": "AT URI reference to the card record"
      },
      "foil": {
        "type": "boolean",
        "description": "Available in foil"
      },
      "frame": {
        "type": "string",
        "description": "Card frame version, e.g. '2015', '1993'"
      },
      "games": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Games this printing exists in, e.g. ['paper', 'mtgo', 'arena']"
      },
      "promo": {
        "type": "boolean",
        "description": "Whether this is a promotional printing"
      },
      "artist": {
        "type": "string",
        "description": "Artist name"
      },
      "rarity": {
        "type": "string",
        "description": "Card rarity",
        "knownValues": [
          "common",
          "uncommon",
          "rare",
          "mythic",
          "special",
          "bonus"
        ]
      },
      "digital": {
        "type": "boolean",
        "description": "Whether this is a digital-only card"
      },
      "fullArt": {
        "type": "boolean",
        "description": "Whether this is a full-art card"
      },
      "nonfoil": {
        "type": "boolean",
        "description": "Available in non-foil"
      },
      "reprint": {
        "type": "boolean",
        "description": "Whether this is a reprint"
      },
      "setCode": {
        "type": "string",
        "description": "Set code, e.g. 'msc', 'lea'"
      },
      "setName": {
        "type": "string",
        "description": "Full set name, e.g. 'Marvel Super Heroes Commander'"
      },
      "setType": {
        "type": "string",
        "description": "Set type, e.g. 'commander', 'core', 'expansion'"
      },
      "finishes": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "Available finishes, e.g. ['nonfoil', 'foil', 'etched']"
      },
      "textless": {
        "type": "boolean",
        "description": "Whether this is a textless printing"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this record was created"
      },
      "imageUris": {
        "ref": "#imageUris",
        "type": "ref",
        "description": "URLs to card images"
      },
      "flavorText": {
        "type": "string",
        "description": "Flavor text"
      },
      "releasedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Release date"
      },
      "scryfallId": {
        "type": "string",
        "description": "Scryfall id - unique per printing"
      },
      "borderColor": {
        "type": "string",
        "description": "Border color",
        "knownValues": [
          "black",
          "white",
          "borderless",
          "silver",
          "gold"
        ]
      },
      "illustrationId": {
        "type": "string",
        "description": "Scryfall illustration_id - unique per artwork"
      },
      "collectorNumber": {
        "type": "string",
        "description": "Collector number within the set"
      }
    }
  },
  "description": "A specific printing of a Magic: The Gathering card"
}
imageUris object

URLs to card images at various sizes

Properties

artCrop string uri Optional

A valid URI.

borderCrop string uri Optional

A valid URI.

large string uri Optional

A valid URI.

normal string uri Optional

A valid URI.

png string uri Optional

A valid URI.

small string uri Optional

A valid URI.

View raw schema
{
  "type": "object",
  "properties": {
    "png": {
      "type": "string",
      "format": "uri"
    },
    "large": {
      "type": "string",
      "format": "uri"
    },
    "small": {
      "type": "string",
      "format": "uri"
    },
    "normal": {
      "type": "string",
      "format": "uri"
    },
    "artCrop": {
      "type": "string",
      "format": "uri"
    },
    "borderCrop": {
      "type": "string",
      "format": "uri"
    }
  },
  "description": "URLs to card images at various sizes"
}

Lexicon Garden

@