{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/crm-companies-api-batch-create-input-schema.json", "title": "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" } } ] } } }