Scryfall · Schema

Scryfall Ruling

An Oracle ruling, Wizards of the Coast set release note, or Scryfall note for a specific Magic card identified by its oracle_id.

Games And ComicsMagic The GatheringCard DataOpen DataFreeCommunity FundedPublic APIs

Properties

Name Type Description
object string
oracle_id string
source string
published_at string
comment string
View JSON Schema on GitHub

JSON Schema

scryfall-ruling-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/scryfall/main/json-schema/scryfall-ruling-schema.json",
  "title": "Scryfall Ruling",
  "description": "An Oracle ruling, Wizards of the Coast set release note, or Scryfall note for a specific Magic card identified by its oracle_id.",
  "type": "object",
  "required": ["object", "oracle_id", "source", "published_at", "comment"],
  "properties": {
    "object": { "type": "string", "const": "ruling" },
    "oracle_id": { "type": "string", "format": "uuid" },
    "source": { "type": "string", "enum": ["wotc", "scryfall"] },
    "published_at": { "type": "string", "format": "date" },
    "comment": { "type": "string" }
  }
}