A standalone note containing rich text, tags, and links.
Record Key
tid
Timestamp-based ID
Properties
body
string
Required
The body content of the note in Markdown format.
maxLength: 100000 bytescreatedAt
string
datetime
Required
Timestamp of creation.
language
string
Optional
Language code for the note content (e.g., 'en', 'es', 'fr').
maxLength: 20 byteslinks
array
of
object
Optional
External or internal links referenced in the note.
tags
array
of
string
Optional
Tags associated with the note.
maxLength: 64 itemstitle
string
Required
Title of the note.
maxLength: 300 bytesupdatedAt
string
datetime
Optional
Timestamp of last update.
visibility
string
Optional
Visibility setting for the note.
maxLength: 100 bytesKnown values:
private, unlisted, publicDefault:
privateView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"maxLength": 100000,
"description": "The body content of the note in Markdown format."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100
},
"maxLength": 64,
"description": "Tags associated with the note."
},
"links": {
"type": "array",
"items": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "uri"
},
"type": {
"type": "string",
"maxLength": 100,
"description": "Type hint for the linked resource."
},
"title": {
"type": "string",
"maxLength": 500
}
}
},
"description": "External or internal links referenced in the note."
},
"title": {
"type": "string",
"maxLength": 300,
"description": "Title of the note."
},
"language": {
"type": "string",
"maxLength": 20,
"description": "Language code for the note content (e.g., 'en', 'es', 'fr')."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of creation."
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of last update."
},
"visibility": {
"type": "string",
"default": "private",
"maxLength": 100,
"description": "Visibility setting for the note.",
"knownValues": [
"private",
"unlisted",
"public"
]
}
}
},
"description": "A standalone note containing rich text, tags, and links."
}