A markdown blog post with extended theme and LaTeX support.
Record Key
tid
Timestamp-based ID
Properties
blobs
array
of
ref
app.greengale.blog.defs#blobMetadata
Optional
No description available.
content
string
Required
Markdown content of the blog post
maxLength: 100000 bytescreatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
latex
boolean
Optional
Legacy field for LaTeX math rendering. LaTeX is now always enabled for GreenGale posts; this field is kept for backward compatibility.
Default:
falseogp
ref
app.greengale.blog.defs#ogp
Optional
No description available.
subtitle
string
Optional
No description available.
maxLength: 1000 bytestheme
ref
app.greengale.blog.defs#theme
Optional
No description available.
title
string
Optional
No description available.
maxLength: 1000 bytesvisibility
string
Optional
Controls who can view this entry
maxLength: 16 bytesAllowed:
public, url, authorDefault:
publicView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content"
],
"properties": {
"ogp": {
"ref": "app.greengale.blog.defs#ogp",
"type": "ref"
},
"blobs": {
"type": "array",
"items": {
"ref": "app.greengale.blog.defs#blobMetadata",
"type": "ref"
}
},
"latex": {
"type": "boolean",
"default": false,
"description": "Legacy field for LaTeX math rendering. LaTeX is now always enabled for GreenGale posts; this field is kept for backward compatibility."
},
"theme": {
"ref": "app.greengale.blog.defs#theme",
"type": "ref"
},
"title": {
"type": "string",
"maxLength": 1000
},
"content": {
"type": "string",
"maxLength": 100000,
"description": "Markdown content of the blog post"
},
"subtitle": {
"type": "string",
"maxLength": 1000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"visibility": {
"enum": [
"public",
"url",
"author"
],
"type": "string",
"default": "public",
"maxLength": 16,
"description": "Controls who can view this entry"
}
}
},
"description": "A markdown blog post with extended theme and LaTeX support."
}