An initial post that starts a discussion
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
No description available.
maxLength: 10000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
root
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
updatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt",
"root"
],
"properties": {
"root": {
"type": "string",
"format": "at-uri"
},
"content": {
"type": "string",
"maxLength": 10000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An initial post that starts a discussion"
}