Trying to save Collapsible Tab block as a section Dawn theme

I copied over the div section and then the schema but I am getting errors.

Goal is to have the collapsible tab section be available as a section for below-the-fold content on my product template. I can then have dynamic content in the tabs so each product is unique based on metafields.

This file contains the following errors:

  • Error: Invalid schema: setting with type=“collapsible_tab” type is invalid
  • Error: Invalid schema: setting with type=“collapsible_tab” ‘name’ is not a valid attribute
  • Error: Invalid schema: setting with type=“collapsible_tab” ‘settings’ is not a valid attribute

Any help would be greatly appreciated!


    
  

  
{% schema %}
{
	"name": "Collapsible Tab",
	"settings": [{
		"type": "collapsible_tab",
		"name": "t:sections.main-product.blocks.collapsible_tab.name",
		"settings": [{
				"type": "text",
				"id": "heading",
				"default": "Collapsible tab",
				"info": "t:sections.main-product.blocks.collapsible_tab.settings.heading.info",
				"label": "t:sections.main-product.blocks.collapsible_tab.settings.heading.label"
			},
			{
				"type": "richtext",
				"id": "content",
				"label": "t:sections.main-product.blocks.collapsible_tab.settings.content.label"
			},
			{
				"type": "page",
				"id": "page",
				"label": "t:sections.main-product.blocks.collapsible_tab.settings.page.label"
			},
			{
				"type": "select",
				"id": "icon",
				"options": [{
						"value": "none",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
					},
					{
						"value": "box",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
					},
					{
						"value": "chat_bubble",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
					},
					{
						"value": "check_mark",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
					},
					{
						"value": "dryer",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
					},
					{
						"value": "eye",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
					},
					{
						"value": "heart",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
					},
					{
						"value": "iron",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
					},
					{
						"value": "leaf",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
					},
					{
						"value": "leather",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
					},
					{
						"value": "lock",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
					},
					{
						"value": "map_pin",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
					},
					{
						"value": "pants",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
					},
					{
						"value": "plane",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
					},
					{
						"value": "price_tag",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
					},
					{
						"value": "question_mark",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
					},
					{
						"value": "return",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
					},
					{
						"value": "ruler",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
					},
					{
						"value": "shirt",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
					},
					{
						"value": "shoe",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
					},
					{
						"value": "silhouette",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
					},
					{
						"value": "star",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
					},
					{
						"value": "truck",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
					},
					{
						"value": "washing",
						"label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
					}
				]
			}
		]
	}]
}
{% endschema %}

{% stylesheet %}
{% endstylesheet %}

{% javascript %}
{% endjavascript %}