From 4c852e4446505dd7be6ad2262d1d47f7acde3c06 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sun, 10 Mar 2024 19:11:22 +0100 Subject: [PATCH] docs: update scema.json --- schema.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/schema.json b/schema.json index 2750244..6849164 100644 --- a/schema.json +++ b/schema.json @@ -1,5 +1,21 @@ { "$defs": { + "BulletEntry": { + "additionalProperties": false, + "description": "This class is the data model of `BulletEntry`.", + "properties": { + "bullet": { + "description": "The bullet of the BulletEntry.", + "title": "Bullet", + "type": "string" + } + }, + "required": [ + "bullet" + ], + "title": "BulletEntry", + "type": "object" + }, "ClassicThemeOptions": { "additionalProperties": false, "description": "This class is the data model of the theme options for the classic theme.", @@ -251,6 +267,12 @@ }, "type": "array" }, + { + "items": { + "$ref": "#/$defs/BulletEntry" + }, + "type": "array" + }, { "items": { "type": "string"