docs: update scema.json

This commit is contained in:
Sina Atalay 2024-03-10 19:11:22 +01:00
parent c17a306641
commit 4c852e4446
1 changed files with 22 additions and 0 deletions

View File

@ -1,5 +1,21 @@
{ {
"$defs": { "$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": { "ClassicThemeOptions": {
"additionalProperties": false, "additionalProperties": false,
"description": "This class is the data model of the theme options for the classic theme.", "description": "This class is the data model of the theme options for the classic theme.",
@ -251,6 +267,12 @@
}, },
"type": "array" "type": "array"
}, },
{
"items": {
"$ref": "#/$defs/BulletEntry"
},
"type": "array"
},
{ {
"items": { "items": {
"type": "string" "type": "string"