{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "gutenito-blocks-addon/how-to",
  "version": "0.0.1",
  "title": "How To",
  "category": "gutenito",
  "icon": "list-view",
  "description": "How-to schema block",
  "example": {
    "attributes": {
      "preview": true
    }
  },
  "attributes": {
    "title": {
      "type": "string",
      "default": "How to Make Something Amazing"
    },
    "description": {
      "type": "string",
      "default": "A step-by-step guide to help you achieve your goal."
    },
    "totalTime": {
      "type": "string",
      "default": "PT30M"
    },
    "steps": {
      "type": "array",
      "default": [
        {
          "name": "Step 1",
          "text": "First, gather all necessary materials."
        },
        {
          "name": "Step 2",
          "text": "Next, prepare your workspace."
        },
        {
          "name": "Step 3",
          "text": "Finally, complete the task."
        }
      ]
    },
    "supplies": {
      "type": "string",
      "default": ""
    },
    "tools": {
      "type": "string",
      "default": ""
    },
    "cost": {
      "type": "string",
      "default": ""
    },
    "titleColor": {
      "type": "string",
      "default": "#1f2937"
    },
    "descriptionColor": {
      "type": "string",
      "default": "#6b7280"
    },
    "stepBgColor": {
      "type": "string",
      "default": "#f3f4f6"
    },
    "stepNumberBgColor": {
      "type": "string",
      "default": "#3b82f6"
    },
    "stepNumberColor": {
      "type": "string",
      "default": "#ffffff"
    },
    "titleFontSize": {
      "type": "string",
      "default": "28px"
    },
    "stepFontSize": {
      "type": "string",
      "default": "16px"
    }
  },
  "supports": {
    "html": false
  },
  "textdomain": "gutenito-blocks-addon",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css",
  "viewScript": "file:./view.js"
}