{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/blog-posts-api-batch-input-structure.json", "name": "BatchInput", "description": "Input for batch archive operations", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "object", "description": "Single item in a batch archive operation", "properties": { "id": { "type": "string", "description": "ID of the post to process", "example": "500123" } }, "required": [ "id" ] }, "description": "Array of items to process", "example": [ { "id": "500123" } ] } }, "required": [ "inputs" ] }