SAP Commerce Cloud · Schema

Review

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
id string Review identifier
headline string Review headline
comment string Review text
rating number Rating value
date string Review date
alias string Reviewer alias
principal object
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-review-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Review",
  "title": "Review",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Review identifier"
    },
    "headline": {
      "type": "string",
      "description": "Review headline"
    },
    "comment": {
      "type": "string",
      "description": "Review text"
    },
    "rating": {
      "type": "number",
      "format": "double",
      "description": "Rating value"
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "Review date"
    },
    "alias": {
      "type": "string",
      "description": "Reviewer alias"
    },
    "principal": {
      "$ref": "#/components/schemas/Principal"
    }
  }
}