{ "type": "object", "description": "Request body for batch updating notes", "name": "BatchUpdateNotesRequest", "properties": { "inputs": { "type": "array", "description": "Array of note updates", "items": { "type": "object", "description": "Input for updating a single item in a batch", "properties": { "id": { "type": "string", "description": "The note identifier" }, "properties": { "type": "object", "description": "The properties to update" } }, "required": [ "id", "properties" ] } } }, "required": [ "inputs" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }