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