SAP Commerce Cloud · Schema

CustomerSearchEntry

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
uid string Customer email or UID
name string Customer full name
customerId string Customer ID
lastCartId string ID of the customer's most recent cart
hasOrder boolean Whether the customer has placed orders
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-customersearchentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerSearchEntry",
  "title": "CustomerSearchEntry",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Customer email or UID"
    },
    "name": {
      "type": "string",
      "description": "Customer full name"
    },
    "customerId": {
      "type": "string",
      "description": "Customer ID"
    },
    "lastCartId": {
      "type": "string",
      "description": "ID of the customer's most recent cart"
    },
    "hasOrder": {
      "type": "boolean",
      "description": "Whether the customer has placed orders"
    }
  }
}