A reply written on someone else's note. Lives in the wall owner's space, authored by whoever wrote it, so it is readable by exactly the people who can read the note.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
The note being replied to.
text
string
Required
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The note being replied to."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reply written on someone else's note. Lives in the wall owner's space, authored by whoever wrote it, so it is readable by exactly the people who can read the note."
}