{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/engagement-emails-api-batch-update-input-schema.json", "title": "BatchUpdateInput", "description": "BatchUpdateInput schema from HubSpot Engagement Emails API", "type": "object", "properties": { "inputs": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "properties": { "type": "object", "additionalProperties": { "type": "string" } } } }, "example": [ { "id": "500123", "properties": { "key": "value" } } ] } } }