A declaration of a shout.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
The date when the shout was created.
message
string
Required
The message of the shout.
maxLength: 1000 bytesminLength: 1 bytesparent
ref
com.atproto.repo.strongRef
Optional
No description available.
subject
ref
com.atproto.repo.strongRef
Required
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"message",
"createdAt",
"subject"
],
"properties": {
"parent": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"message": {
"type": "string",
"maxLength": 1000,
"minLength": 1,
"description": "The message of the shout."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date when the shout was created."
}
}
},
"description": "A declaration of a shout."
}