affine_recover_doc
Restore a document to a specific previous version using its timestamp and unique identifier within an AFFiNE workspace, ensuring precise recovery of content.
Instructions
Recover a doc to a previous timestamp.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
guid | Yes | ||
timestamp | Yes | ||
workspaceId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"guid": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"workspaceId": {
"type": "string"
}
},
"required": [
"guid",
"timestamp"
],
"type": "object"
}