Skip to content

Commit 69ccc1c

Browse files
committed
build error?
1 parent e01e4ac commit 69ccc1c

15 files changed

Lines changed: 916 additions & 0 deletions
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"type": "object",
4+
"properties": {
5+
"title": {
6+
"default": "Untitled Bank Entry",
7+
"type": "string"
8+
},
9+
"description": {
10+
"default": "No description provided",
11+
"anyOf": [
12+
{
13+
"type": "string"
14+
},
15+
{
16+
"type": "null"
17+
}
18+
]
19+
},
20+
"category": {
21+
"default": "General",
22+
"anyOf": [
23+
{
24+
"type": "string"
25+
},
26+
{
27+
"type": "null"
28+
}
29+
]
30+
},
31+
"order": {
32+
"default": 0,
33+
"type": "number"
34+
},
35+
"lastModified": {
36+
"type": "string",
37+
"format": "date-time"
38+
},
39+
"version": {
40+
"anyOf": [
41+
{
42+
"type": "string"
43+
},
44+
{
45+
"type": "null"
46+
}
47+
]
48+
},
49+
"image": {},
50+
"imageAlt": {
51+
"anyOf": [
52+
{
53+
"type": "string"
54+
},
55+
{
56+
"type": "null"
57+
}
58+
]
59+
},
60+
"hideCoverImage": {
61+
"type": "boolean"
62+
},
63+
"hideTOC": {
64+
"type": "boolean"
65+
},
66+
"draft": {
67+
"type": "boolean"
68+
},
69+
"noIndex": {
70+
"type": "boolean"
71+
},
72+
"showTOC": {
73+
"type": "boolean"
74+
},
75+
"featured": {
76+
"type": "boolean"
77+
},
78+
"$schema": {
79+
"type": "string"
80+
}
81+
},
82+
"required": [
83+
"title",
84+
"description",
85+
"category",
86+
"order",
87+
"image"
88+
],
89+
"additionalProperties": false
90+
}
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"type": "object",
4+
"properties": {
5+
"title": {
6+
"default": "Untitled Documentation",
7+
"type": "string"
8+
},
9+
"description": {
10+
"default": "No description provided",
11+
"anyOf": [
12+
{
13+
"type": "string"
14+
},
15+
{
16+
"type": "null"
17+
}
18+
]
19+
},
20+
"category": {
21+
"default": "General",
22+
"anyOf": [
23+
{
24+
"type": "string"
25+
},
26+
{
27+
"type": "null"
28+
}
29+
]
30+
},
31+
"order": {
32+
"default": 0,
33+
"type": "number"
34+
},
35+
"lastModified": {
36+
"type": "string",
37+
"format": "date-time"
38+
},
39+
"version": {
40+
"anyOf": [
41+
{
42+
"type": "string"
43+
},
44+
{
45+
"type": "null"
46+
}
47+
]
48+
},
49+
"image": {},
50+
"imageAlt": {
51+
"anyOf": [
52+
{
53+
"type": "string"
54+
},
55+
{
56+
"type": "null"
57+
}
58+
]
59+
},
60+
"hideCoverImage": {
61+
"type": "boolean"
62+
},
63+
"hideTOC": {
64+
"type": "boolean"
65+
},
66+
"draft": {
67+
"type": "boolean"
68+
},
69+
"noIndex": {
70+
"type": "boolean"
71+
},
72+
"showTOC": {
73+
"type": "boolean"
74+
},
75+
"featured": {
76+
"type": "boolean"
77+
},
78+
"$schema": {
79+
"type": "string"
80+
}
81+
},
82+
"required": [
83+
"title",
84+
"description",
85+
"category",
86+
"order",
87+
"image"
88+
],
89+
"additionalProperties": false
90+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"type": "object",
4+
"properties": {
5+
"title": {
6+
"default": "Untitled Page",
7+
"type": "string"
8+
},
9+
"description": {
10+
"default": "No description provided",
11+
"anyOf": [
12+
{
13+
"type": "string"
14+
},
15+
{
16+
"type": "null"
17+
}
18+
]
19+
},
20+
"draft": {
21+
"type": "boolean"
22+
},
23+
"lastModified": {
24+
"type": "string",
25+
"format": "date-time"
26+
},
27+
"image": {},
28+
"imageAlt": {
29+
"anyOf": [
30+
{
31+
"type": "string"
32+
},
33+
{
34+
"type": "null"
35+
}
36+
]
37+
},
38+
"hideCoverImage": {
39+
"type": "boolean"
40+
},
41+
"hideTOC": {
42+
"type": "boolean"
43+
},
44+
"showTOC": {
45+
"type": "boolean"
46+
},
47+
"noIndex": {
48+
"type": "boolean"
49+
},
50+
"$schema": {
51+
"type": "string"
52+
}
53+
},
54+
"required": [
55+
"title",
56+
"description",
57+
"image"
58+
],
59+
"additionalProperties": false
60+
}
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
3+
"type": "object",
4+
"properties": {
5+
"title": {
6+
"default": "Untitled Post",
7+
"type": "string"
8+
},
9+
"description": {
10+
"default": "No description provided",
11+
"anyOf": [
12+
{
13+
"type": "string"
14+
},
15+
{
16+
"type": "null"
17+
}
18+
]
19+
},
20+
"date": {
21+
"default": "2026-02-19T05:05:07.006Z",
22+
"type": "string",
23+
"format": "date-time"
24+
},
25+
"tags": {
26+
"anyOf": [
27+
{
28+
"type": "array",
29+
"items": {
30+
"type": "string"
31+
}
32+
},
33+
{
34+
"type": "null"
35+
}
36+
]
37+
},
38+
"draft": {
39+
"type": "boolean"
40+
},
41+
"image": {},
42+
"imageOG": {
43+
"type": "boolean"
44+
},
45+
"imageAlt": {
46+
"anyOf": [
47+
{
48+
"type": "string"
49+
},
50+
{
51+
"type": "null"
52+
}
53+
]
54+
},
55+
"hideCoverImage": {
56+
"type": "boolean"
57+
},
58+
"hideTOC": {
59+
"type": "boolean"
60+
},
61+
"showTOC": {
62+
"type": "boolean"
63+
},
64+
"targetKeyword": {
65+
"anyOf": [
66+
{
67+
"type": "string"
68+
},
69+
{
70+
"type": "null"
71+
}
72+
]
73+
},
74+
"author": {
75+
"anyOf": [
76+
{
77+
"type": "string"
78+
},
79+
{
80+
"type": "null"
81+
}
82+
]
83+
},
84+
"noIndex": {
85+
"type": "boolean"
86+
},
87+
"$schema": {
88+
"type": "string"
89+
}
90+
},
91+
"required": [
92+
"title",
93+
"description",
94+
"date",
95+
"image"
96+
],
97+
"additionalProperties": false
98+
}

0 commit comments

Comments
 (0)