{ "type": "object", "description": "Request body for batch reading notes", "properties": { "inputs": { "type": "array", "description": "Array of note identifiers", "example": [ { "id": "1024" } ], "items": { "type": "object", "description": "Input for reading a single item in a batch", "properties": { "id": { "type": "string", "description": "The note identifier", "example": "1024" } }, "required": [ "id" ] } }, "properties": { "type": "array", "description": "Properties to return", "example": [ "example-value" ], "items": { "type": "string" } }, "propertiesWithHistory": { "type": "array", "description": "Properties to return with history", "example": [ "example-value" ], "items": { "type": "string" } }, "idProperty": { "type": "string", "description": "The property to use as the identifier", "example": "500123" } }, "required": [ "inputs" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchReadNotesRequest" }