changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "cursor": {
+ "description": "Pagination cursor",
+ "type": "string"
+ },
+ "error": {
+ "description": "Error code if connection failed",
+ "type": "string"
+ },
+ "has_more": {
+ "description": "Whether more results exist",
+ "type": "boolean"
+ },
+ "matches": {
+ "description": "Array of matching files and folders",
+ "items": {
+ "properties": {
+ "match_type": {
+ "description": "Type of match (e.g., filename)",
+ "type": "string"
+ },
+ "metadata": {
+ "properties": {
+ "id": {
+ "description": "Unique ID",
+ "type": "string"
+ },
+ "modified": {
+ "description": "Last modified timestamp",
+ "type": "string"
+ },
+ "name": {
+ "description": "File or folder name",
+ "type": "string"
+ },
+ "path_display": {
+ "description": "Display path",
+ "type": "string"
+ },
+ "size": {
+ "description": "File size in bytes",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "message": {
+ "description": "Error message if connection failed",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}