No description available.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
May be an empty string, if there are embeds.
maxLength: 1000000 bytesmaxGraphemes: 100000 graphemescreatedAt
string
datetime
Required
Client-declared timestamp when this post was originally created.
facets
array
of
ref
cafe.dummy.lsky.facet
Optional
Text formatting and annotations (bold/italics/etc, mentions...)
followup
ref
#followupRef
Optional
No description available.
labels
union
Optional
Self-label values for this post. Effectively content warnings.
Known types:
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt"
],
"properties": {
"facets": {
"type": "array",
"items": {
"ref": "cafe.dummy.lsky.facet",
"type": "ref"
},
"description": "Text formatting and annotations (bold/italics/etc, mentions...)"
},
"labels": {
"refs": [
"com.atproto.label.defs#selfLabels"
],
"type": "union",
"description": "Self-label values for this post. Effectively content warnings."
},
"content": {
"type": "string",
"maxLength": 1000000,
"description": "May be an empty string, if there are embeds.",
"maxGraphemes": 100000
},
"followup": {
"ref": "#followupRef",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
}
}
}
}