SAP Commerce Cloud · Schema

Image

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
url string Image URL
altText string Alternative text
format string Image format (e.g., thumbnail, product, zoom)
imageType string Image type
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-image-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Image",
  "title": "Image",
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Image URL"
    },
    "altText": {
      "type": "string",
      "description": "Alternative text"
    },
    "format": {
      "type": "string",
      "description": "Image format (e.g., thumbnail, product, zoom)"
    },
    "imageType": {
      "type": "string",
      "enum": [
        "PRIMARY",
        "GALLERY"
      ],
      "description": "Image type"
    }
  }
}