Request body for batch archiving notes
{ "type": "object", "description": "Request body for batch archiving notes", "properties": { "inputs": { "type": "array", "description": "Array of note identifiers to archive", "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" ] } } }, "required": [ "inputs" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchArchiveNotesRequest" }