renameDocumentOrNotebookEntry
Change the title of a document or notebook entry in RSpace to improve organization and clarity of research data.
Instructions
Changes the name/title of a document or notebook entry
Usage: Update document titles for better organization Returns: Updated document information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Doc Id"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"doc_id",
"name"
],
"type": "object"
}