delete_json_doc
Remove a JSON document by its unique ID from the fireproof ledger database, ensuring secure deletion and multi-user synchronization on the MCP server.
Instructions
Delete a JSON document by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of document to delete |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of document to delete",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}