Ariba Guided Buying · Schema
AssetLineItem
An asset line item on a requisition.
B2BCatalogERPProcurementRequisitionsSAPSupply Chain
Properties
| Name | Type | Description |
|---|---|---|
| lineItemId | string | Line item identifier. |
| description | string | Line item description. |
| assetCategory | string | Asset category classification. |
| quantity | integer | Quantity ordered. |
| assetNumber | string | Assigned asset number (populated after update). |
JSON Schema
{
"$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-asset-line-item-schema.json",
"title": "AssetLineItem",
"description": "An asset line item on a requisition.",
"type": "object",
"properties": {
"lineItemId": {
"type": "string",
"description": "Line item identifier.",
"example": "LINE-001"
},
"description": {
"type": "string",
"description": "Line item description.",
"example": "Laptop Computer"
},
"assetCategory": {
"type": "string",
"description": "Asset category classification.",
"example": "IT Equipment"
},
"quantity": {
"type": "integer",
"description": "Quantity ordered.",
"example": 1
},
"assetNumber": {
"type": "string",
"description": "Assigned asset number (populated after update).",
"example": "ASSET-001234"
}
}
}