{
"id": "CART-MULTI-001",
"status": "INCOMPLETE",
"validation_status": "INVALID",
"items": [
{
"variant_id": "SHIRT-BLUE-M",
"quantity": 2,
"name": "Blue T-Shirt",
"price": { "currency_code": "USD", "value": "29.99" }
},
{
"variant_id": "JEANS-SLIM-32",
"quantity": 2,
"name": "Slim Fit Jeans",
"price": { "currency_code": "USD", "value": "79.99" }
},
{
"variant_id": "SNEAKERS-WHITE-10",
"quantity": 1,
"name": "White Sneakers",
"price": { "currency_code": "USD", "value": "89.99" }
}
],
"validation_issues": [
{
"code": "INVENTORY_ISSUE",
"type": "BUSINESS_RULE",
"message": "Product is currently out of stock",
"user_message": "Blue T-Shirt (Size M) is out of stock. Would you like a different color?",
"variant_id": "SHIRT-BLUE-M",
"context": {
"specific_issue": "ITEM_OUT_OF_STOCK",
"available_quantity": 0,
"requested_quantity": 2
},
"resolution_options": [
{ "action": "REMOVE_ITEM", "label": "Remove from cart" },
{ "action": "SUGGEST_ALTERNATIVE", "label": "View other colors" }
]
},
{
"code": "INVENTORY_ISSUE",
"type": "INVALID_DATA",
"message": "Requested quantity exceeds available stock",
"user_message": "Only 1 unit of Slim Fit Jeans is available. You requested 2.",
"variant_id": "JEANS-SLIM-32",
"context": {
"specific_issue": "INSUFFICIENT_INVENTORY",
"available_quantity": 1,
"requested_quantity": 2
},
"resolution_options": [
{ "action": "MODIFY_CART", "label": "Update to available quantity" }
]
}
],
"totals": {
"subtotal": { "currency_code": "USD", "value": "89.99" },
"shipping": { "currency_code": "USD", "value": "9.99" },
"total": { "currency_code": "USD", "value": "99.98" }
}
}