Record Key
tid
Timestamp-based ID
Properties
attachment
blob
Optional
The post's attachment blob. Must be present if parent is dev.ocbwoy3.blueboard.board, otherwise AppView will ignore it.
maxSize: 1.0 MBcreatedAt
string
datetime
Required
The date and time when the post was created
parent
string
at-uri
Required
Determines the parent of the post. Must either be a `dev.ocbwoy3.blueboard.board` or a `dev.ocbwoy3.blueboard.post`.
text
string
Required
The post's text
maxLength: 1000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt",
"parent"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"description": "The post's text"
},
"parent": {
"type": "string",
"format": "at-uri",
"description": "Determines the parent of the post. Must either be a `dev.ocbwoy3.blueboard.board` or a `dev.ocbwoy3.blueboard.post`."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the post was created"
},
"attachment": {
"type": "blob",
"accept": [
"image/*",
"video/webm"
],
"maxSize": 1000000,
"description": "The post's attachment blob. Must be present if parent is dev.ocbwoy3.blueboard.board, otherwise AppView will ignore it."
}
}
}
}