Created
May 2, 2023 15:26
-
-
Save mateuspontes/5eae4bea13bfcc68b4472b25e3b87b0e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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