A trade dispute flag.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Required
No description available.
maxLength: 2000 bytesfiledByAvatar
string
uri
Optional
A valid URI.
filedByDid
string
did
Optional
A decentralized identifier (DID).
filedByHandle
string
Optional
No description available.
filedByName
string
Optional
No description available.
photoUrls
array
of
string
uri
Optional
No description available.
reason
string
Required
No description available.
Known values:
misgraded, wrong_card, damaged, not_received, scam, otherresolutionNotes
string
Optional
No description available.
maxLength: 2000 bytesresolvedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
resolvedBy
string
Optional
No description available.
status
string
Optional
No description available.
Known values:
pending, reviewed, resolved, dismissedtradeId
string
Required
No description available.
tradeRef
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"tradeId",
"reason",
"description",
"createdAt"
],
"properties": {
"reason": {
"type": "string",
"knownValues": [
"misgraded",
"wrong_card",
"damaged",
"not_received",
"scam",
"other"
]
},
"status": {
"type": "string",
"knownValues": [
"pending",
"reviewed",
"resolved",
"dismissed"
]
},
"tradeId": {
"type": "string"
},
"tradeRef": {
"type": "string",
"format": "at-uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"photoUrls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
}
},
"filedByDid": {
"type": "string",
"format": "did"
},
"resolvedAt": {
"type": "string",
"format": "datetime"
},
"resolvedBy": {
"type": "string"
},
"description": {
"type": "string",
"maxLength": 2000
},
"filedByName": {
"type": "string"
},
"filedByAvatar": {
"type": "string",
"format": "uri"
},
"filedByHandle": {
"type": "string"
},
"resolutionNotes": {
"type": "string",
"maxLength": 2000
}
}
},
"description": "A trade dispute flag."
}