A wishlist entry for a wanted card.
Record Key
tid
Timestamp-based ID
Properties
cardName
string
Required
No description available.
cardUri
string
Required
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
imageUrl
string
uri
Optional
A valid URI.
maxPrice
number
Optional
No description available.
ownerDid
string
did
Optional
A decentralized identifier (DID).
rarity
string
Optional
No description available.
setCode
string
Optional
No description available.
setName
string
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"cardUri",
"cardName",
"createdAt"
],
"properties": {
"rarity": {
"type": "string"
},
"cardUri": {
"type": "string"
},
"setCode": {
"type": "string"
},
"setName": {
"type": "string"
},
"cardName": {
"type": "string"
},
"imageUrl": {
"type": "string",
"format": "uri"
},
"maxPrice": {
"type": "number"
},
"ownerDid": {
"type": "string",
"format": "did"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A wishlist entry for a wanted card."
}