tagDocumentOrNotebookEntry
Add tags to RSpace documents and notebook entries to organize research data by project, experiment type, or other categories for improved searchability and categorization.
Instructions
Adds tags to documents for organization and searchability
Usage: Categorize documents by project, experiment type, etc. Tags: Use consistent naming for better organization Returns: Updated document with new tags
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_id | Yes | ||
tags | Yes | One or more tags in a list |
Input Schema (JSON Schema)
{
"properties": {
"doc_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Doc Id"
},
"tags": {
"description": "One or more tags in a list",
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
}
},
"required": [
"doc_id",
"tags"
],
"type": "object"
}