Card
Context: object.physical.collectable.card
The data structure is used to represent a collectible card. It can include various types of cards, such as trading cards, sports cards, and game cards.
Data structure
| Key | Type | Description | Mandatory |
|---|---|---|---|
| cardType | string | The type of card (e.g., sports, trading, game) | Yes |
| theme | string | The theme or subject of the card | No |
| cardNumber | string | The card's unique identification number within a set | No |
| setName | string | The name of the set or series the card belongs to | No |
| variant | string | Any special edition or variant of the card | No |
| serialNumber | string | The card's unique serial number | No |
| attributes | object[] | An array of additional attributes specific to the card | No |
Example
{
"cardType": "Sports",
"theme": "Basketball",
"cardNumber": "50",
"setName": "1992 Skybox Basketball",
"variant": "Draft Pick",
"serialNumber": "1200/5000",
"attributes": [
{
"name": "Rookie Card",
"value": "Yes"
},
{
"name": "Player",
"value": "Shaquille O'Neal"
},
{
"name": "Team",
"value": "Orlando Magic"
},
{
"name": "Position",
"value": "Center"
}
]
}