{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/crm-contacts-api-batch-create-input-structure.json", "name": "BatchCreateInput", "description": "Input for a batch create operation.", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "object", "description": "Input for creating or updating a CRM object.", "properties": { "properties": { "type": "object", "description": "The properties to set on the object.", "additionalProperties": { "type": "string" }, "example": { "key": "value" } } } }, "example": [ { "properties": { "key": "value" } } ] } } }