A fork-owned post stored in a permissioned account or community space. It is never a public app.bsky.feed.post record.
Record Key
tid
Timestamp-based ID
Properties
community
string
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
embed
unknown
Optional
No description available.
facets
array
of
unknown
Optional
No description available.
maxLength: 256 itemslangs
array
of
string
Optional
No description available.
maxLength: 3 itemsreply
unknown
Optional
No description available.
text
string
Required
No description available.
maxLength: 3000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"text": {
"type": "string",
"maxLength": 3000
},
"embed": {
"type": "unknown"
},
"langs": {
"type": "array",
"items": {
"type": "string"
},
"maxLength": 3
},
"reply": {
"type": "unknown"
},
"facets": {
"type": "array",
"items": {
"type": "unknown"
},
"maxLength": 256
},
"community": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A fork-owned post stored in a permissioned account or community space. It is never a public app.bsky.feed.post record."
}