Custom content block for spores.garden sites
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
Block content
maxLength: 500000 bytesmaxGraphemes: 50000 graphemescreatedAt
string
datetime
Required
Creation timestamp
format
string
Optional
Content format
Known values:
markdown, html, textDefault:
markdowntitle
string
Optional
Block title
maxLength: 2000 bytesmaxGraphemes: 200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"createdAt"
],
"properties": {
"title": {
"type": "string",
"maxLength": 2000,
"description": "Block title",
"maxGraphemes": 200
},
"format": {
"type": "string",
"default": "markdown",
"description": "Content format",
"knownValues": [
"markdown",
"html",
"text"
]
},
"content": {
"type": "string",
"maxLength": 500000,
"description": "Block content",
"maxGraphemes": 50000
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Creation timestamp"
}
}
},
"description": "Custom content block for spores.garden sites"
}