A markdown blog post with LaTeX, GitHub notes, Mermaid, YouTube and Bluesky extensions.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
Markdown content. Local image paths are replaced with blob CIDs at publish time.
maxLength: 10000 bytescreatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
fontFamily
string
Optional
Font family name available from Coollabs.
maxLength: 200 bytesfontSize
integer
Optional
Font size in points. Recommended range: 9–21, but clients may allow larger sizes for accessibility.
images
array
of
ref
#image
Optional
Blob references for images embedded in the markdown content.
maxLength: 20 itemspublishedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
theme
string
Optional
Display theme for the note.
Known values:
light, darktitle
string
Required
No description available.
maxLength: 1000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"content"
],
"properties": {
"theme": {
"type": "string",
"description": "Display theme for the note.",
"knownValues": [
"light",
"dark"
]
},
"title": {
"type": "string",
"maxLength": 1000
},
"images": {
"type": "array",
"items": {
"ref": "#image",
"type": "ref"
},
"maxLength": 20,
"description": "Blob references for images embedded in the markdown content."
},
"content": {
"type": "string",
"maxLength": 10000,
"description": "Markdown content. Local image paths are replaced with blob CIDs at publish time."
},
"fontSize": {
"type": "integer",
"description": "Font size in points. Recommended range: 9–21, but clients may allow larger sizes for accessibility."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"fontFamily": {
"type": "string",
"maxLength": 200,
"description": "Font family name available from Coollabs."
},
"publishedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A markdown blog post with LaTeX, GitHub notes, Mermaid, YouTube and Bluesky extensions."
}