createNotebookEntry
Add experimental procedures, results, or observations to an existing RSpace notebook with HTML or plain text formatting.
Instructions
Adds a new entry to an existing notebook
Usage: Add experimental procedures, results, or observations to a notebook Content: Supports both HTML and plain text formatting Returns: Created entry information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the notebook entry | |
notebook_id | Yes | The id of the notebook to add the entry | |
text_content | Yes | html or plain text content |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the notebook entry",
"title": "Name",
"type": "string"
},
"notebook_id": {
"description": "The id of the notebook to add the entry",
"title": "Notebook Id",
"type": "integer"
},
"text_content": {
"description": "html or plain text content ",
"title": "Text Content",
"type": "string"
}
},
"required": [
"name",
"text_content",
"notebook_id"
],
"type": "object"
}