{
"$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"
}
]
}