SAP Commerce Cloud · Schema

Catalog

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
id string Catalog identifier
name string Catalog name
catalogVersions array
View JSON Schema on GitHub

JSON Schema

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