{
  "$schema": "https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json",
  "apiVersion": 2,
  "name": "rs-blockington/alignment-container",
  "title": "Alignment Container",
  "category": "rs-blockington-blockington-blocks",
  "description": "Defines a flex container that can hold any type of block.",
  "textdomain": "rs-blockington",
  "attributes": {
    "justify_content": {
      "type": "string",
      "default": "flex-start"
    },
    "flex_direction": {
      "type": "string",
      "default": "row"
    },
    "align_items": {
      "type": "string",
      "default": "stretch"
    },
    "gap": {
      "type": "object",
      "default": {
        "top": "0px",
        "bottom": "0px",
        "right": "0px",
        "left": "0px"
      }
    }
  },
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css",
  "style": "file:./style-index.css"
}