{ "type": "object", "description": "Input for batch archive operations", "properties": { "inputs": { "type": "array", "description": "Array of author IDs to archive", "example": [ { "id": "500123" } ], "items": { "type": "object", "properties": { "id": { "type": "string", "description": "ID of the author to archive" } }, "required": [ "id" ] } } }, "required": [ "inputs" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "BatchArchiveInput" }