{
  "text": {
    "name": "text",
    "title": "Text",
    "icon": "i-heroicons-bars-3-bottom-left",
    "default_block_name": "Your name",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "multi_lines": false,
      "max_char_limit": 2000,
      "placeholder": "Type your answer"
    }
  },
  "rich_text": {
    "name": "rich_text",
    "title": "Rich Text",
    "icon": "i-heroicons-bars-3-20-solid",
    "default_block_name": "Description",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "max_char_limit": 2000,
      "placeholder": "Write your answer"
    }
  },
  "date": {
    "name": "date",
    "title": "Date",
    "icon": "i-heroicons-calendar-20-solid",
    "default_block_name": "Date",
    "bg_class": "bg-green-100",
    "text_class": "text-green-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "date_summary",
    "default_values": {}
  },
  "url": {
    "name": "url",
    "title": "URL",
    "icon": "i-heroicons-link-20-solid",
    "default_block_name": "Link",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "max_char_limit": 2000,
      "placeholder": "https://example.com"
    }
  },
  "phone_number": {
    "name": "phone_number",
    "title": "Phone",
    "icon": "i-heroicons-phone-20-solid",
    "default_block_name": "Phone Number",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "placeholder": "+1 202 555 0142"
    }
  },
  "email": {
    "name": "email",
    "title": "Email",
    "icon": "i-heroicons-at-symbol-20-solid",
    "default_block_name": "Email",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "max_char_limit": 2000,
      "placeholder": "name@example.com"
    }
  },
  "checkbox": {
    "name": "checkbox",
    "title": "Checkbox",
    "icon": "i-heroicons-check-circle",
    "default_block_name": "Checkbox",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "boolean",
    "default_values": {}
  },
  "select": {
    "name": "select",
    "title": "Select",
    "icon": "i-heroicons-chevron-up-down-20-solid",
    "default_block_name": "Select",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "distribution",
    "default_values": {
      "placeholder": "Select an option",
      "select": {
        "options": [
          { "name": "Option 1", "id": "Option 1" },
          { "name": "Option 2", "id": "Option 2" }
        ]
      }
    }
  },
  "radio": {
    "name": "radio",
    "title": "Radio Button",
    "icon": "i-material-symbols-radio-button-checked-outline",
    "default_block_name": "Radio",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "distribution",
    "default_values": {
      "select": {
        "options": [
          { "name": "Option 1", "id": "Option 1" },
          { "name": "Option 2", "id": "Option 2" }
        ]
      },
      "without_dropdown": true
    },
    "actual_input": "select"
  },
  "multi_select": {
    "name": "multi_select",
    "title": "Multi-select",
    "icon": "i-heroicons-chevron-up-down-20-solid",
    "default_block_name": "Multi Select",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "distribution",
    "default_values": {
      "placeholder": "Select options",
      "multi_select": {
        "options": [
          { "name": "Option 1", "id": "Option 1" },
          { "name": "Option 2", "id": "Option 2" }
        ]
      }
    }
  },
  "matrix": {
    "name": "matrix",
    "title": "Matrix",
    "icon": "i-heroicons-table-cells-20-solid",
    "default_block_name": "Matrix",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "matrix",
    "default_values": {
      "rows": ["Row 1"],
      "columns": [1, 2, 3],
      "selection_data": {
        "Row 1": null
      }
    }
  },
  "number": {
    "name": "number",
    "title": "Number",
    "icon": "i-heroicons-hashtag-20-solid",
    "default_block_name": "Number",
    "bg_class": "bg-purple-100",
    "text_class": "text-purple-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "numeric_stats",
    "default_values": {
      "placeholder": "Type a number"
    }
  },
  "rating": {
    "name": "rating",
    "title": "Rating",
    "icon": "i-heroicons-star",
    "default_block_name": "Rating",
    "bg_class": "bg-purple-100",
    "text_class": "text-purple-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "rating",
    "default_values": {
      "rating_max_value": 5
    }
  },
  "scale": {
    "name": "scale",
    "title": "Scale",
    "icon": "i-heroicons-scale-20-solid",
    "default_block_name": "Scale",
    "bg_class": "bg-purple-100",
    "text_class": "text-purple-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "numeric_stats",
    "default_values": {
      "scale_min_value": 1,
      "scale_max_value": 5,
      "scale_step_value": 1
    }
  },
  "slider": {
    "name": "slider",
    "title": "Slider",
    "icon": "i-heroicons-adjustments-horizontal",
    "default_block_name": "Slider",
    "bg_class": "bg-purple-100",
    "text_class": "text-purple-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "numeric_stats",
    "default_values": {
      "slider_min_value": 0,
      "slider_max_value": 50,
      "slider_step_value": 1
    }
  },
  "files": {
    "name": "files",
    "title": "File",
    "icon": "i-heroicons-paper-clip",
    "default_block_name": "Files",
    "bg_class": "bg-pink-100",
    "text_class": "text-pink-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {}
  },
  "signature": {
    "name": "signature",
    "title": "Signature",
    "icon": "i-heroicons-pencil-square-20-solid",
    "default_block_name": "Signature",
    "bg_class": "bg-pink-100",
    "text_class": "text-pink-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {}
  },
  "barcode": {
    "name": "barcode",
    "title": "Barcode Reader",
    "icon": "i-material-symbols-barcode-scanner-rounded",
    "default_block_name": "Scan Barcode",
    "bg_class": "bg-pink-100",
    "text_class": "text-pink-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "decoders": ["qr_reader", "ean_reader", "ean_8_reader"]
    }
  },
  "qrcode": {
    "name": "qrcode",
    "title": "QR Code Reader",
    "icon": "i-material-symbols-qr-code-scanner-rounded",
    "default_block_name": "Scan QR Code",
    "bg_class": "bg-pink-100",
    "text_class": "text-pink-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "decoders": ["qr_reader"]
    },
    "actual_input": "barcode"
  },
  "password": {
    "name": "password",
    "title": "Password",
    "icon": "i-heroicons-key",
    "default_block_name": "Password",
    "bg_class": "bg-blue-100",
    "text_class": "text-blue-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "text_list",
    "default_values": {
      "secret_input": true,
      "multi_lines": false,
      "max_char_limit": 2000,
      "placeholder": "Enter your password"
    },
    "actual_input": "text"
  },
  "toggle_switch": {
    "name": "toggle_switch",
    "title": "Toggle Switch",
    "icon": "i-heroicons-adjustments-horizontal",
    "default_block_name": "Toggle",
    "bg_class": "bg-red-100",
    "text_class": "text-red-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "boolean",
    "default_values": {
      "use_toggle_switch": true
    },
    "actual_input": "checkbox"
  },
  "payment": {
    "name": "payment",
    "title": "Payment",
    "icon": "i-heroicons-credit-card",
    "default_block_name": "Payment",
    "bg_class": "bg-green-100",
    "text_class": "text-green-900",
    "available_in": ["classic", "focused"],
    "is_input": true,
    "summary_type": "payment",
    "self_hosted": false,
    "max_count": 1,
    "auth_required": true
  },
  "nf-text": {
    "name": "nf-text",
    "title": "Text",
    "icon": "i-heroicons-bars-3",
    "default_block_name": "Text",
    "bg_class": "bg-yellow-100",
    "text_class": "text-yellow-900",
    "available_in": ["classic", "focused"],
    "is_input": false,
    "default_values": {}
  },
  "nf-page-break": {
    "name": "nf-page-break",
    "title": "Page-break",
    "icon": "i-heroicons-document-plus",
    "default_block_name": "Page Break",
    "bg_class": "bg-gray-100",
    "text_class": "text-gray-900",
    "available_in": ["classic"],
    "is_input": false,
    "default_values": {}
  },
  "nf-divider": {
    "name": "nf-divider",
    "title": "Divider",
    "icon": "i-heroicons-minus",
    "default_block_name": "Divider",
    "bg_class": "bg-gray-100",
    "text_class": "text-gray-900",
    "available_in": ["classic"],
    "is_input": false,
    "default_values": {}
  },
  "nf-image": {
    "name": "nf-image",
    "title": "Image",
    "icon": "i-heroicons-photo",
    "default_block_name": "Image",
    "bg_class": "bg-yellow-100",
    "text_class": "text-yellow-900",
    "available_in": ["classic"],
    "is_input": false,
    "default_values": {}
  },
  "nf-video": {
    "name": "nf-video",
    "title": "Video",
    "icon": "i-heroicons-video-camera",
    "default_block_name": "Video Block",
    "bg_class": "bg-yellow-100",
    "text_class": "text-yellow-900",
    "is_input": false,
    "default_values": {}
  },
  "nf-code": {
    "name": "nf-code",
    "title": "Code",
    "icon": "i-heroicons-code-bracket",
    "default_block_name": "Code Block",
    "bg_class": "bg-yellow-100",
    "text_class": "text-yellow-900",
    "available_in": ["classic", "focused"],
    "is_input": false,
    "default_values": {}
  }
}
