A simple text note record.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 8,
"description": "Optional set of tags for the note."
},
"text": {
"type": "string",
"maxLength": 3000,
"description": "The content of the note.",
"maxGraphemes": 500
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the note was created."
}
}
},
"description": "A simple text note record."
}