Record describing a page content block.
Record Key
tid
Timestamp-based ID
Properties
content
string
Required
No description available.
maxLength: 100000 bytescreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
images
array
of
ref
us.polhem.blog.image
Optional
No description available.
slug
string
Required
No description available.
maxLength: 100 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"content",
"slug",
"createdAt"
],
"properties": {
"slug": {
"type": "string",
"maxLength": 100
},
"images": {
"type": "array",
"items": {
"ref": "us.polhem.blog.image",
"type": "ref"
}
},
"content": {
"type": "string",
"maxLength": 100000
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Record describing a page content block."
}