BatchAssetUpdateRequest

Request body for batch asset line item updates.

B2BCatalogERPProcurementRequisitionsSAPSupply Chain

Properties

Name Type Description
updates array List of asset line item updates. Maximum 20 records.
View JSON Schema on GitHub

JSON Schema

asset-management-api-batch-asset-update-request-schema.json Raw ↑
{
  "$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"
  ]
}