Record containing a blog post.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
The content of the post (markdown).
maxLength: 1000000 bytesmaxGraphemes: 100000 graphemescreatedAt
string
datetime
Required
Client-declared timestamp when this post was originally created.
lang
string
Optional
Language code of the original content (e.g., 'ja', 'en').
maxLength: 10 bytestitle
string
Required
The title of the post.
maxLength: 3000 bytesmaxGraphemes: 300 graphemestranslations
ref
#translationMap
Optional
Translations of the post in other languages.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content",
"createdAt"
],
"properties": {
"lang": {
"type": "string",
"maxLength": 10,
"description": "Language code of the original content (e.g., 'ja', 'en')."
},
"title": {
"type": "string",
"maxLength": 3000,
"description": "The title of the post.",
"maxGraphemes": 300
},
"content": {
"type": "string",
"maxLength": 1000000,
"description": "The content of the post (markdown).",
"maxGraphemes": 100000
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this post was originally created."
},
"translations": {
"ref": "#translationMap",
"type": "ref",
"description": "Translations of the post in other languages."
}
}
},
"description": "Record containing a blog post."
}