/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 16:12 Unexpected "{"
Line 16:13 Expected identifier but found "\"name\""
Line 16:1125 Unexpected ","
Line 16:1127 Expected identifier but found "\"type\""
Line 16:1270 Unexpected ","
Line 16:1272 Expected identifier but found "\"type\""
Line 16:1393 Unexpected ","
Line 16:1395 Expected identifier but found "\"type\""
... and 9 more hidden warnings

**/
{% schema %}{"name":"t:sections.collection-list.name","tag":"section","class":"section section-collection-list","max_blocks":15,"settings":[{"type":"text","id":"title","default":"Collections","label":"t:sections.collection-list.settings.title.label"},{"type":"select","id":"heading_size","options":[{"value":"h2","label":"t:sections.all.heading_size.options__1.label"},{"value":"h1","label":"t:sections.all.heading_size.options__2.label"},{"value":"h0","label":"t:sections.all.heading_size.options__3.label"}],"default":"h1","label":"t:sections.all.heading_size.label"},{"type":"select","id":"color_scheme","options":[{"value":"dark-brown","label":"Dark Brown (#2C1810)"},{"value":"cream","label":"Cream (#F5EDE6)"},{"value":"gold","label":"Gold (#B4975A)"},{"value":"off-white","label":"Off White (#FFFFFF)"},{"value":"deep-brown","label":"Deep Brown (#1A0F0A)"},{"value":"light-brown","label":"Light Brown (#5C4D44)"}],"default":"off-white","label":"Color scheme","info":"Choose a color scheme for this section"}],"default":"background-1","label":"t:sections.all.colors.label","info":"t:sections.all.colors.has_cards_info"},{"type":"range","id":"columns_desktop","min":1,"max":5,"step":1,"default":3,"label":"t:sections.collection-list.settings.columns_desktop.label"},{"type":"checkbox","id":"show_view_all","default":false,"label":"t:sections.collection-list.settings.show_view_all.label"},{"type":"select","id":"columns_mobile","options":[{"value":"1","label":"t:sections.collection-list.settings.columns_mobile.options__1.label"},{"value":"2","label":"t:sections.collection-list.settings.columns_mobile.options__2.label"}],"default":"1","label":"t:sections.collection-list.settings.columns_mobile.label"},{"type":"checkbox","id":"swipe_on_mobile","default":false,"label":"t:sections.collection-list.settings.swipe_on_mobile.label"},{"type":"range","id":"padding_top","min":0,"max":100,"step":4,"unit":"px","label":"t:sections.all.padding.padding_top","default":36},{"type":"range","id":"padding_bottom","min":0,"max":100,"step":4,"unit":"px","label":"t:sections.all.padding.padding_bottom","default":36}],"blocks":[{"type":"featured_collection","name":"t:sections.collection-list.blocks.featured_collection.name","settings":[{"type":"collection","id":"collection","label":"t:sections.collection-list.blocks.featured_collection.settings.collection.label"}]}],"presets":[{"name":"t:sections.collection-list.presets.name","blocks":[{"type":"featured_collection"},{"type":"featured_collection"},{"type":"featured_collection"}]}]}{% endschema %}``` Key fixes made:1. Ensured all JSON objects are properly closed 2. Verified all arrays have matching brackets 3. Confirmed all property names and values are properly quoted 4. Validated nested object structures To implement this:1. Replace your existing schema section with this corrected version 2. Validate the JSON using a JSON validator if needed 3. Make sure all translation keys referenced (t:sections...) exist in your locale files Would you like me to help you validate any specific part of the JSON or provide additional implementation guidance?