SAP Commerce Cloud · Schema

UserRegistration

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
uid string Email address as user ID
firstName string First name
lastName string Last name
password string Account password
titleCode string Title code
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-userregistration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserRegistration",
  "title": "UserRegistration",
  "type": "object",
  "required": [
    "uid",
    "firstName",
    "lastName",
    "password"
  ],
  "properties": {
    "uid": {
      "type": "string",
      "description": "Email address as user ID"
    },
    "firstName": {
      "type": "string",
      "description": "First name"
    },
    "lastName": {
      "type": "string",
      "description": "Last name"
    },
    "password": {
      "type": "string",
      "format": "password",
      "description": "Account password"
    },
    "titleCode": {
      "type": "string",
      "description": "Title code"
    }
  }
}