A simple page with text, an image, and a link
Record Key
tid
Timestamp-based ID
Properties
body
string
Optional
No description available.
cover
ref
lex:me.wilb.content.page#image
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
links
array
of
ref
lex:me.wilb.content.page#link
Optional
No description available.
title
string
Required
No description available.
maxGraphemes: 200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"createdAt"
],
"properties": {
"body": {
"type": "string"
},
"cover": {
"ref": "lex:me.wilb.content.page#image",
"type": "ref"
},
"links": {
"type": "array",
"items": {
"ref": "lex:me.wilb.content.page#link",
"type": "ref"
}
},
"title": {
"type": "string",
"maxGraphemes": 200
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A simple page with text, an image, and a link"
}