An end-to-end encrypted note. The ciphertext body is readable only with the user's passphrase-derived key.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"enc",
"kdf",
"data"
],
"properties": {
"enc": {
"type": "string",
"description": "Symmetric cipher used for `data`.",
"knownValues": [
"AES-256-GCM"
]
},
"kdf": {
"type": "string",
"description": "Key-derivation function for the encryption key.",
"knownValues": [
"Argon2id"
]
},
"data": {
"type": "bytes",
"description": "Ciphertext: a 12-byte IV followed by the AES-256-GCM output."
}
}
},
"description": "An end-to-end encrypted note. The ciphertext body is readable only with the user's passphrase-derived key."
}