Skip to content

Card mapping

A card mapping is used to map cards across different TCG regions.

Property Type Is required Description
from CardMappingEntry Yes
to CardMappingEntry|null Yes

When used as a file, the card-mapping suffix is required, e.g., japan/star-birth/001.001-100.card-mapping.json.

CardMappingEntry

CardMappingEntry is a CardReference with the following properties added to it:

Property Type Is required Description
cardRarity string|null No

Example

{
  "from": {
    "cardName": "Exeggcute",
    "expansion": {
      "name": "Star Birth",
      "series": "Sword & Shield Era",
      "tcgRegion": "Japan",
      "code": "S9",
      "releaseDate": "2022-01-14T00:00:00Z",
      "cardNumberRightPart": "100"
    },
    "cardNumber": "001/100",
    "cardNumberSortingOrder": 1,
    "cardRarity": "Common (C)"
  },
  "to": {
    "cardName": "Exeggcute",
    "expansion": {
      "name": "Brilliant Stars",
      "series": "Sword & Shield Series",
      "tcgRegion": "International",
      "code": "BRS",
      "releaseDate": "2022-02-25T00:00:00Z",
      "cardNumberRightPart": "172"
    },
    "cardNumber": "001/172",
    "cardNumberSortingOrder": 1,
    "cardRarity": "Common"
  }
}