createNewNotebook
Create a new electronic lab notebook to organize related experiments and research entries under a single container for better project management.
Instructions
Creates a new electronic lab notebook
Usage: Organize related experiments/entries under a single notebook Returns: Created notebook information including ID for adding entries
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the notebook to create |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the notebook to create",
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}