An embedded Bluesky post.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when the post was created.
facets
array
of
ref
place.pollen.richtext.facet#main
Optional
Rich text annotations for the commentary.
postUri
string
at-uri
Required
AT URI of the Bluesky post (at://did/app.bsky.feed.post/rkey).
postUrl
string
uri
Required
Web URL of the Bluesky post.
tags
array
of
string
Optional
Hashtags for discovery.
maxLength: 10 itemstext
string
Optional
Optional commentary.
maxLength: 500 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"postUri",
"postUrl",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 10,
"description": "Hashtags for discovery."
},
"text": {
"type": "string",
"maxLength": 500,
"description": "Optional commentary."
},
"facets": {
"type": "array",
"items": {
"ref": "place.pollen.richtext.facet#main",
"type": "ref"
},
"description": "Rich text annotations for the commentary."
},
"postUri": {
"type": "string",
"format": "at-uri",
"description": "AT URI of the Bluesky post (at://did/app.bsky.feed.post/rkey)."
},
"postUrl": {
"type": "string",
"format": "uri",
"description": "Web URL of the Bluesky post."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the post was created."
}
}
},
"description": "An embedded Bluesky post."
}