Record representing a single note
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 5000
},
"title": {
"type": "string",
"maxLength": 500
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "Record representing a single note"
}