{ "type": "object", "description": "Input for batch archive operations", "name": "BatchInput", "properties": { "inputs": { "type": "array", "description": "Array of items to process", "items": { "type": "object", "description": "Single item in a batch archive operation", "properties": { "id": { "type": "string", "description": "ID of the post to process" } }, "required": [ "id" ] } } }, "required": [ "inputs" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }