SAP Commerce Cloud · Schema

Agent

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
uid string Agent unique identifier
name string Agent full name
email string Agent email
groups array Agent permission groups
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-agent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Agent",
  "title": "Agent",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "Agent unique identifier"
    },
    "name": {
      "type": "string",
      "description": "Agent full name"
    },
    "email": {
      "type": "string",
      "description": "Agent email"
    },
    "groups": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Agent permission groups"
    }
  }
}