A public expression of interest in a listing. Coordination of pickup happens off-app via direct message.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
message
string
Optional
Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here.
maxLength: 600 bytesmaxGraphemes: 300 graphemessubject
ref
com.atproto.repo.strongRef
Required
Strong reference (URI + CID) to the listing this interest refers to.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"message": {
"type": "string",
"maxLength": 600,
"description": "Optional short public note (e.g. 'still available?'). Pickup details belong in direct messages, not here.",
"maxGraphemes": 300
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Strong reference (URI + CID) to the listing this interest refers to."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A public expression of interest in a listing. Coordination of pickup happens off-app via direct message."
}