{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/commerce-payments-api-batch-update-input-item-schema.json", "title": "BatchUpdateInputItem", "description": "A single input item for batch update", "type": "object", "properties": { "id": { "type": "string", "description": "The ID of the payment to update", "example": "500123" }, "properties": { "type": "object", "description": "The properties to update", "additionalProperties": { "type": "string" }, "example": { "key": "value" } }, "idProperty": { "type": "string", "description": "The property to use as the identifier", "example": "500123" } }, "required": [ "id", "properties" ] }