An original post in a user's Backyard feed.
tid
Timestamp-based ID
Properties
content
array
of
union
Required
Ordered array of content blocks. Each block is a text block, image block, or embed block.
maxLength: 20 itemsminLength: 1 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
langs
array
of
string
language
Optional
BCP-47 language tags of the post text.
maxLength: 3 itemstags
array
of
string
Optional
Additional non-inline tags for categorization.
maxLength: 8 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"maxLength": 8,
"description": "Additional non-inline tags for categorization."
},
"langs": {
"type": "array",
"items": {
"type": "string",
"format": "language"
},
"maxLength": 3,
"description": "BCP-47 language tags of the post text."
},
"content": {
"type": "array",
"items": {
"refs": [
"#textBlock",
"#imageBlock",
"#embedBlock"
],
"type": "union"
},
"maxLength": 20,
"minLength": 1,
"description": "Ordered array of content blocks. Each block is a text block, image block, or embed block."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "An original post in a user's Backyard feed."
}