SAP Commerce Cloud · Schema

CartSummary

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
code string Cart code
totalItems integer Number of items
total string Formatted cart total
modified string Last modification time
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-cartsummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CartSummary",
  "title": "CartSummary",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Cart code"
    },
    "totalItems": {
      "type": "integer",
      "description": "Number of items"
    },
    "total": {
      "type": "string",
      "description": "Formatted cart total"
    },
    "modified": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification time"
    }
  }
}