{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ariba-guided-buying/refs/heads/main/json-schema/asset-management-api-batch-asset-update-request-schema.json", "title": "BatchAssetUpdateRequest", "description": "Request body for batch asset line item updates.", "type": "object", "properties": { "updates": { "type": "array", "description": "List of asset line item updates. Maximum 20 records.", "items": { "$ref": "#/components/schemas/AssetLineItemUpdate" } } }, "required": [ "updates" ] }