encrypt_document
Secure collaborative documents by encrypting their content in Tiptap JSON format using Base64 encryption. Ideal for enhancing data protection during storage or transmission.
Instructions
Encrypt a collaborative document using Base64 encryption
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Document content in Tiptap JSON format to encrypt | |
id | Yes | ID of the document to encrypt |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"additionalProperties": false,
"description": "Document content in Tiptap JSON format to encrypt",
"properties": {},
"type": "object"
},
"id": {
"description": "ID of the document to encrypt",
"type": "string"
}
},
"required": [
"id",
"content"
],
"type": "object"
}