Skip to content

Commit 87bf3fd

Browse files
committed
Fixed JSON schema validation errors
1 parent 3cac37e commit 87bf3fd

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

docs/insiders/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ which are currently exclusively available to sponsors:
9393

9494
<div class="mdx-columns" markdown>
9595

96-
- [x] [Navigation path] (Breadcrumbs): :material-alert-decagram:{ .mdx-pulse title="Added on january 14, 2023" }
96+
- [x] [Navigation path] (Breadcrumbs): :material-alert-decagram:{ .mdx-pulse title="Added on January 14, 2023" }
9797
- [x] [Typeset plugin]: :material-alert-decagram:{ .mdx-pulse title="Added on December 20, 2022" }
9898
- [x] [Privacy plugin: external links] :material-alert-decagram:{ .mdx-pulse title="Added on October 18, 2022" }
9999
- [x] [Navigation subtitles]

docs/schema/extra.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"properties": {
1717
"provider": {
1818
"title": "Analytics provider",
19-
"oneOf": [
19+
"anyOf": [
2020
{
2121
"title": "Google Analytics",
2222
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
@@ -30,7 +30,7 @@
3030
]
3131
},
3232
"property": {
33-
"oneOf": [
33+
"anyOf": [
3434
{
3535
"title": "Google Analytics 4",
3636
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/setting-up-site-analytics/#google-analytics",
@@ -370,7 +370,7 @@
370370
]
371371
},
372372
"icon": {
373-
"oneOf": [
373+
"anyOf": [
374374
{
375375
"$ref": "assets/icons.json"
376376
},

docs/schema/nav.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",
55
"type": "array",
66
"items": {
7-
"oneOf": [
7+
"anyOf": [
88
{
99
"title": "Navigation item",
1010
"markdownDescription": "https://www.mkdocs.org/user-guide/configuration/#nav",

docs/schema/theme.json

+2-8
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@
882882
"scheme": {
883883
"title": "Color scheme",
884884
"markdownDescription": "https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#color-scheme",
885-
"oneOf": [
885+
"anyOf": [
886886
{
887887
"enum": [
888888
"default",
@@ -892,12 +892,6 @@
892892
{
893893
"type": "string"
894894
}
895-
],
896-
"defaultSnippets": [
897-
{
898-
"label": "default",
899-
"body": "${1:default}"
900-
}
901895
]
902896
},
903897
"primary": {
@@ -955,7 +949,7 @@
955949
]
956950
},
957951
"icon": {
958-
"oneOf": [
952+
"anyOf": [
959953
{
960954
"$ref": "assets/icons.json"
961955
},

0 commit comments

Comments
 (0)