workflowy_create_node
Create a new node in WorkFlowy outlines with customizable properties including name, parent hierarchy, layout mode, and completion status for organizing tasks and notes.
Instructions
Create a new node in WorkFlowy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
_completed | No | ||
layout_mode | No | ||
name | Yes | ||
note | No | ||
parent_id | No | ||
position | No | top |
Input Schema (JSON Schema)
{
"properties": {
"_completed": {
"default": false,
"title": "Completed",
"type": "boolean"
},
"layout_mode": {
"anyOf": [
{
"enum": [
"bullets",
"todo",
"h1",
"h2",
"h3"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Layout Mode"
},
"name": {
"title": "Name",
"type": "string"
},
"note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Note"
},
"parent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Parent Id"
},
"position": {
"default": "top",
"enum": [
"top",
"bottom"
],
"title": "Position",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}