{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/authors-api-batch-read-input-structure.json", "name": "BatchReadInput", "description": "Input for batch read operations", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "ID of the author to read" } }, "required": [ "id" ] }, "description": "Array of author IDs to retrieve", "example": [ { "id": "500123" } ] } }, "required": [ "inputs" ] }