A reblog of a Backyard post with optional additions.
Record Key
tid
Timestamp-based ID
Properties
content
array
of
union
Optional
Optional additional content blocks (text, images, embeds) added by the reblogger.
maxLength: 20 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
subject
ref
com.atproto.repo.strongRef
Required
The post or reblog being reblogged.
tags
array
of
string
Optional
Tags added by the reblogger for categorization.
maxLength: 8 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"maxLength": 8,
"description": "Tags added by the reblogger for categorization."
},
"content": {
"type": "array",
"items": {
"refs": [
"blue.backyard.feed.post#textBlock",
"blue.backyard.feed.post#imageBlock",
"blue.backyard.feed.post#embedBlock"
],
"type": "union"
},
"maxLength": 20,
"description": "Optional additional content blocks (text, images, embeds) added by the reblogger."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "The post or reblog being reblogged."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A reblog of a Backyard post with optional additions."
}