From 7f80babff0612df09c65684235007377e7bf7a57 Mon Sep 17 00:00:00 2001 From: Quincy Morgan <2046746+quincylvania@users.noreply.github.com> Date: Mon, 22 Apr 2024 17:47:17 -0400 Subject: [PATCH] Fix swag schema --- _tools/frontmatter-validator/schemas/page.schema.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/_tools/frontmatter-validator/schemas/page.schema.json b/_tools/frontmatter-validator/schemas/page.schema.json index 93b275c..14a6114 100644 --- a/_tools/frontmatter-validator/schemas/page.schema.json +++ b/_tools/frontmatter-validator/schemas/page.schema.json @@ -153,7 +153,16 @@ "title": "swag sections", "type": "array", "items": { - "$ref": "#/$defs/swagItems" + "type": "object", + "title": "swag section", + "properties": { + "title": { + "type": "string" + }, + "items": { + "$ref": "#/$defs/swagItems" + } + } } }, "links": {