Created
February 11, 2026 14:54
-
-
Save emersonlaurentino/992fa9834886c98020078a37f525fce2 to your computer and use it in GitHub Desktop.
Page Schema
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
| { | |
| "tree": ["h_01", "shelf_01", "f_01"], | |
| "dataSources": { | |
| "search_01": { "handler": "vtex:product-search", "collection": "144" } | |
| }, | |
| "components": { | |
| "h_01": { "type": "Header", "props": { "logo": "vtex.png" } }, | |
| "shelf_01": { | |
| "type": "ProductShelf", | |
| "props": { "title": "Ofertas", "data": "$dataSources.search_01" } | |
| }, | |
| "f_01": { "type": "Footer" } | |
| } | |
| } |
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
| { | |
| "type": "Page", | |
| "content": { | |
| "type": "Container", | |
| "children": [ | |
| { "type": "Header", "props": { "logo": "vtex.png" } }, | |
| { | |
| "type": "ProductShelf", | |
| "props": { "title": "Ofertas" }, | |
| "dataSource": { "type": "vtex:product-search", "args": { "collection": "144" } } | |
| }, | |
| { "type": "Footer" } | |
| ] | |
| } | |
| } |
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
| {"id": "meta", "page": "home", "theme": "vtex"} | |
| {"id": "comp_1", "type": "Header", "props": {"logo": "vtex.png"}} | |
| {"id": "comp_2", "type": "ProductShelf", "props": {"title": "Ofertas"}, "source": "search_01"} | |
| {"id": "comp_3", "type": "Footer"} | |
| {"id": "search_01", "handler": "vtex:product-search", "args": {"collection": "144"}} |
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
| page: home | |
| theme: vtex | |
| datasource search_01: | |
| handler: vtex:product-search | |
| collection: 144 | |
| component Header: | |
| logo: vtex.png | |
| component ProductShelf: | |
| title: Ofertas | |
| items: @search_01 | |
| component Footer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment