addedOutput schema / description
Added value: +"Represents a single node in the WorkFlowy outline hierarchy."
addedOutput schema / example
Added value: +{
+ "children": [],
+ "completedAt": null,
+ "createdAt": 1704067200,
+ "id": "node-123",
+ "layoutMode": "bullets",
+ "modifiedAt": 1704067200,
+ "name": "Example Node",
+ "note": "This is a note",
+ "priority": 1
+}
addedOutput schema / properties / ch
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/WorkFlowyNode"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Child nodes"
+}
addedOutput schema / properties / completedAt
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Completion timestamp (null if not completed)"
+}
addedOutput schema / properties / cp
Added value: +{
+ "anyOf": [
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Completion status (for tests)"
+}
addedOutput schema / properties / createdAt
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Creation timestamp (Unix timestamp)"
+}
addedOutput schema / properties / data
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Node data including layoutMode"
+}
addedOutput schema / properties / id
Added value: +{
+ "description": "Unique identifier for the node",
+ "type": "string"
+}
addedOutput schema / properties / modifiedAt
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Last modification timestamp"
+}
addedOutput schema / properties / name
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Text content of the node"
+}
addedOutput schema / properties / note
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Note content attached to the node"
+}
addedOutput schema / properties / parentId
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Parent node ID"
+}
addedOutput schema / properties / priority
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Sort order"
+}
removedOutput schema / properties / result
Removed value: -{
- "$ref": "#/$defs/WorkFlowyNode"
-}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "id"
+]
removedOutput schema / x-fastmcp-wrap-result
Removed value: -true