{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-associations-api-batch-association-read-input-schema.json", "title": "BatchAssociationReadInput", "description": "Input for batch reading associations", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "object", "description": "Reference to a CRM object by ID", "properties": { "id": { "type": "string", "description": "ID of the object", "example": "500123" } }, "required": [ "id" ] }, "description": "Source objects to read associations for", "example": [ { "id": "500123" } ] } }, "required": [ "inputs" ] }