{
  "$schema": "https://raw.githubusercontent.com/WordPress/gutenberg/wp/6.3/schemas/json/block.json",
  "apiVersion": 3,
  "name": "omniform/input",
  "category": "omniform",
  "title": "Input",
  "description": "A field for simple text entry.",
  "textdomain": "omniform",
  "ancestor": [
    "omniform/field"
  ],
  "attributes": {
    "fieldType": {
      "type": "string",
      "default": "text"
    },
    "fieldPlaceholder": {
      "type": "string"
    },
    "fieldValue": {
      "type": "string"
    }
  },
  "supports": {
    "html": false,
    "color": {
      "text": true,
      "background": true
    },
    "spacing": {
      "padding": true
    },
    "__experimentalBorder": {
      "color": true,
      "radius": true,
      "style": true,
      "width": true
    }
  },
  "usesContext": [
    "postId",
    "postType",
    "omniform/fieldGroupName",
    "omniform/fieldGroupLabel",
    "omniform/fieldGroupIsRequired",
    "omniform/fieldLabel",
    "omniform/fieldName",
    "omniform/fieldIsRequired"
  ],
  "editorScript": "file:index.js",
  "style": "file:style-index.css"
}