changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "error": {
+ "additionalProperties": true,
+ "description": "Present only when ok is false.",
+ "properties": {
+ "code": {
+ "description": "Stable machine-readable failure code, for example insufficient_scope, workspace_id_required, rate_limited, not_found, or upstream_error. Branch on this, not on message text.",
+ "type": "string"
+ },
+ "detail": {
+ "description": "Optional structured context for the failure, for example { missing_scopes: [...] } on insufficient_scope."
+ },
+ "message": {
+ "description": "Human-readable explanation of the failure.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "code",
+ "message"
+ ],
+ "type": "object"
+ },
+ "memories": {
+ "description": "Active memories on the node, with full content: id, title, content, source.",
+ "items": {},
+ "type": "array"
+ },
+ "node": {
+ "additionalProperties": true,
+ "description": "The node the target resolved to.",
+ "properties": {
+ "name": {
+ "description": "Node display name.",
+ "type": "string"
+ },
+ "node_id": {
+ "description": "Tree node UUID for the resolved target.",
+ "type": "string"
+ },
+ "path": {
+ "description": "Workspace-relative path of the node.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "node_id",
+ "path",
+ "name"
+ ],
+ "type": "object"
+ },
+ "ok": {
+ "description": "true when the call succeeded. false when it did not, in which case `error` carries the reason and the success fields are absent.",
+ "type": "boolean"
+ },
+ "rules": {
+ "description": "Active rules on the node, with full content. Obey these.",
+ "items": {},
+ "type": "array"
+ },
+ "skills": {
+ "description": "Active skills on the node, with full content.",
+ "items": {},
+ "type": "array"
+ },
+ "subtree_memory_index": {
+ "description": "Compact index of memories below the node: { entries, total, truncated }."
+ }
+ },
+ "required": [
+ "ok"
+ ],
+ "type": "object"
+}