a sign in the guestbook
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt",
"message"
],
"properties": {
"message": {
"type": "string",
"maxLength": 100
},
"subject": {
"type": "string",
"format": "at-identifier"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "a sign in the guestbook"
}