{
  "$schema": "https://schemas.wp.org/trunk/block.json",
  "apiVersion": 3,
  "name": "modern-fields/multi-token",
  "version": "1.0",
  "title": "Multi token",
  "category": "mf-input-fields",
  "description": "A mutli-value input field.",
  "attributes": {
    "defaultValue": {
      "type": "array",
      "default": []
    },
    "suggestions": {
      "type": "array",
      "default": []
    },
    "placeholder": {
      "type": "string",
      "default": ""
    },
    "maxLength": {
      "type": "number"
    },
    "mfMeta": {
      "type": "object",
      "default": {
        "schema": {
          "type": "string"
        }
      }
    }
  },
  "example": {
    "attributes": {
      "label": "Multi Token",
      "help": "A mutli-value input field.",
      "defaultValue": [
        "cat",
        "dog"
      ]
    },
    "viewportWidth": 300
  },
  "textdomain": "modern-fields",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}