SAP Commerce Cloud · Schema

CatalogVersion

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
id string Catalog version identifier
url string Catalog version URL
categories array
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-catalogversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CatalogVersion",
  "title": "CatalogVersion",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Catalog version identifier"
    },
    "url": {
      "type": "string",
      "description": "Catalog version URL"
    },
    "categories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Category"
      }
    }
  }
}