SAP Commerce Cloud · Schema

User

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
uid string User unique identifier (email)
name string Full name
firstName string First name
lastName string Last name
titleCode string Title code (mr, mrs, ms, etc.)
currency object
language object
defaultAddress object
displayUid string Display UID
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "User unique identifier (email)"
    },
    "name": {
      "type": "string",
      "description": "Full name"
    },
    "firstName": {
      "type": "string",
      "description": "First name"
    },
    "lastName": {
      "type": "string",
      "description": "Last name"
    },
    "titleCode": {
      "type": "string",
      "description": "Title code (mr, mrs, ms, etc.)"
    },
    "currency": {
      "$ref": "#/components/schemas/Currency"
    },
    "language": {
      "$ref": "#/components/schemas/Language"
    },
    "defaultAddress": {
      "$ref": "#/components/schemas/Address"
    },
    "displayUid": {
      "type": "string",
      "description": "Display UID"
    }
  }
}