From 34951680aca52f0aeed216a4ec158863abe4ecbf Mon Sep 17 00:00:00 2001 From: Aki Hamano <54422211+t-hamano@users.noreply.github.com> Date: Mon, 12 Feb 2024 12:36:15 +0900 Subject: [PATCH] Block JSON schema: Update `shadow` definition (#58910) * Block JSON schema: Fix `shadow` definition * Update schema * Fix schema --- schemas/json/block.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/schemas/json/block.json b/schemas/json/block.json index 7234f36a5e0ec..e5e63df17d732 100644 --- a/schemas/json/block.json +++ b/schemas/json/block.json @@ -556,10 +556,12 @@ } }, "shadow": { + "default": false, "description": "Allow blocks to define a box shadow.", "oneOf": [ { - "type": "boolean" + "type": "boolean", + "description": "Defines whether a box shadow is enabled or not." }, { "type": "object"