A trade listing offering cards in exchange for wanted cards.
Record Key
tid
Timestamp-based ID
Properties
authorAvatar
string
uri
Optional
A valid URI.
authorDid
string
did
Optional
A decentralized identifier (DID).
authorHandle
string
Optional
No description available.
authorName
string
Optional
No description available.
circleRef
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
expiresAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
notes
string
Optional
No description available.
maxLength: 500 bytesofferCardImages
array
of
string
uri
Optional
No description available.
offerCardNames
array
of
string
Required
No description available.
offerCardUris
array
of
string
Optional
No description available.
maxLength: 50 itemspreferredCurrency
string
Optional
No description available.
Known values:
GBP, EUR, USDshippingRegions
array
of
string
Optional
No description available.
status
string
Required
No description available.
Known values:
open, negotiating, pending_ship, completed, cancelledvisibility
string
Required
No description available.
Known values:
public, wishlist_only, circle_scopedwantedCardNames
array
of
string
Required
No description available.
wantedCardUris
array
of
string
Optional
No description available.
maxLength: 50 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"offerCardNames",
"wantedCardNames",
"status",
"visibility",
"createdAt"
],
"properties": {
"notes": {
"type": "string",
"maxLength": 500
},
"status": {
"type": "string",
"knownValues": [
"open",
"negotiating",
"pending_ship",
"completed",
"cancelled"
]
},
"authorDid": {
"type": "string",
"format": "did"
},
"circleRef": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"expiresAt": {
"type": "string",
"format": "datetime"
},
"authorName": {
"type": "string"
},
"visibility": {
"type": "string",
"knownValues": [
"public",
"wishlist_only",
"circle_scoped"
]
},
"authorAvatar": {
"type": "string",
"format": "uri"
},
"authorHandle": {
"type": "string"
},
"offerCardUris": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 50
},
"offerCardNames": {
"type": "array",
"items": {
"type": "string"
}
},
"wantedCardUris": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 50
},
"offerCardImages": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"shippingRegions": {
"type": "array",
"items": {
"type": "string"
}
},
"wantedCardNames": {
"type": "array",
"items": {
"type": "string"
}
},
"preferredCurrency": {
"type": "string",
"knownValues": [
"GBP",
"EUR",
"USD"
]
}
}
},
"description": "A trade listing offering cards in exchange for wanted cards."
}