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"