SAP Commerce Cloud · Schema

Feature

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
code string Feature code
name string Feature name
comparable boolean Whether this feature supports comparison
featureUnit object
featureValues array
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-feature-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Feature",
  "title": "Feature",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Feature code"
    },
    "name": {
      "type": "string",
      "description": "Feature name"
    },
    "comparable": {
      "type": "boolean",
      "description": "Whether this feature supports comparison"
    },
    "featureUnit": {
      "type": "object",
      "properties": {
        "symbol": {
          "type": "string"
        },
        "name": {
          "type": "string"
        }
      }
    },
    "featureValues": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string"
          }
        }
      }
    }
  }
}