A post created in response to a request
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
message
string
Optional
Optional message to the requester
maxLength: 500 bytesmaxGraphemes: 150 graphemespost
ref
com.atproto.repo.strongRef
Required
Reference to the post created as response
request
ref
com.atproto.repo.strongRef
Required
Reference to the request
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"request",
"post",
"createdAt"
],
"properties": {
"post": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the post created as response"
},
"message": {
"type": "string",
"maxLength": 500,
"description": "Optional message to the requester",
"maxGraphemes": 150
},
"request": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the request"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A post created in response to a request"
}