Scryfall · Schema

Scryfall Catalog

A Scryfall Catalog object containing an array of Magic data points (card names, types, supertypes, etc.).

Games And ComicsMagic The GatheringCard DataOpen DataFreeCommunity FundedPublic APIs

Properties

Name Type Description
object string
uri string
total_values integer
data array
View JSON Schema on GitHub

JSON Schema

scryfall-catalog-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/scryfall/main/json-schema/scryfall-catalog-schema.json",
  "title": "Scryfall Catalog",
  "description": "A Scryfall Catalog object containing an array of Magic data points (card names, types, supertypes, etc.).",
  "type": "object",
  "required": ["object", "data"],
  "properties": {
    "object": { "type": "string", "const": "catalog" },
    "uri": { "type": "string", "format": "uri" },
    "total_values": { "type": "integer" },
    "data": { "type": "array", "items": { "type": "string" } }
  }
}