VTEX · Schema

Images

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
imagem1.jpg string Array containing the URLs of the SKU's images. The image must be sent through `https` protocol, otherwise it will not be rendered in VTEX Admin.
View JSON Schema on GitHub

JSON Schema

vtex-images-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Images",
  "title": "Images",
  "required": [
    "imagem1.jpg"
  ],
  "type": "array",
  "properties": {
    "imagem1.jpg": {
      "type": "string",
      "description": "Array containing the URLs of the SKU's images.  The image must be sent through `https` protocol, otherwise it will not be rendered in VTEX Admin.",
      "default": "https://imageurl.example"
    }
  },
  "example": [
    {
      "imagem1.jpg": "imageurl.example"
    }
  ]
}