Record linking to a Markdown file.
Record Key
tid
Timestamp-based ID
Properties
commentRoot
string
at-uri
Optional
A Bluesky post to use as the comment root
content
blob
Required
No description available.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
Client-declared timestamp when this post was originally created.
previewText
string
Optional
Display title or preview text
maxLength: 300 bytesupdatedAt
string
datetime
Optional
Client-declared timestamp when this post was last updated.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt"
],
"properties": {
"content": {
"type": "blob",
"accept": [
"text/markdown"
],
"maxSize": 1000000
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was last updated."
},
"commentRoot": {
"type": "string",
"format": "at-uri",
"description": "A Bluesky post to use as the comment root"
},
"previewText": {
"type": "string",
"maxLength": 300,
"description": "Display title or preview text"
}
}
},
"description": "Record linking to a Markdown file."
}