compareBackups
Analyze and compare two Heptabase backups to identify differences, export results, and optimize data management for enhanced workflow efficiency.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
backupId1 | Yes | ||
backupId2 | Yes | ||
exportPath | No | ||
whiteboardId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"backupId1": {
"type": "string"
},
"backupId2": {
"type": "string"
},
"exportPath": {
"type": "string"
},
"whiteboardId": {
"type": "string"
}
},
"required": [
"backupId1",
"backupId2"
],
"type": "object"
}