Skip to content

Instantly share code, notes, and snippets.

@mateuspontes
Created May 2, 2023 15:26
Show Gist options
  • Save mateuspontes/5eae4bea13bfcc68b4472b25e3b87b0e to your computer and use it in GitHub Desktop.
Save mateuspontes/5eae4bea13bfcc68b4472b25e3b87b0e to your computer and use it in GitHub Desktop.
[
{
"name": "ProductsShelf",
"schema": {
"title": "Vitrine de produtos",
"description": "Vitrine de produtos",
"type": "object",
"required": ["title"],
"properties": {
"title": {
"title": "Título da vitrine",
"type": "string"
},
"products": {
"type": "array",
"minItems": 1,
"maxItems": 10,
"items": {
"title": "Produto",
"type": "object",
"required": ["skuId"],
"properties": {
"skuId": {
"title": "SKU ID",
"type": "string"
}
}
}
}
}
}
},
{
"name": "SearchShelf",
"schema": {
"title": "Vitrine de buscas",
"description": "Vitrine de buscas",
"type": "object",
"required": ["title"],
"properties": {
"title": {
"title": "Título da vitrine",
"type": "string"
},
"products": {
"type": "array",
"minItems": 1,
"maxItems": 10,
"items": {
"title": "Busca",
"type": "object",
"required": ["imageSrc", "name", "term"],
"properties": {
"imageSrc": {
"title": "Imagem da busca",
"type": "string",
"widget": {
"ui:widget": "image-uploader"
}
},
"name": {
"title": "Nome da busca",
"type": "string"
},
"term": {
"title": "Termo da busca",
"type": "string"
}
}
}
}
}
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment