{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "iansvo/content-area",
	"version": "0.1.0",
	"title": "Content Area",
	"category": "theme",
	"icon": "layout",
	"description": "Adds a block content area to a site editor template.",
	"keywords": [ "content", "area", "meta", "template", "fse" ],
	"attributes": {
		"metaKey": {
			"type": "string",
			"default": "extra_content_area"
		},
		"disallowedBlocks": {
			"type": "array",
			"default": [],
			"items": {
				"type": "string"
			}
		},
		"blockFilter": {
			"type": "string",
			"enum": [ "allow", "disallow" ],
			"default": "allow"
		}
	},
	"supports": {
		"html": false,
		"allowedBlocks": true,
		"lock": false,
		"contentRole": true
	},
	"usesContext": [ "postId", "postType", "queryId"  ],
	"textdomain": "content-area-block",
	"editorScript": "file:./index.js",
	"render": "file:./render.php"
}
