-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathschema.json
59 lines (59 loc) · 2.2 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "古诗文默写题库通用题库",
"type": "object",
"properties": {
"repositories": {
"type": "array",
"title": "古诗文默写题库通用题库组",
"items": {
"type": "object",
"title": "单篇古诗文默写题库通用题库",
"properties": {
"title": {
"type": "string",
"title": "标题"
},
"author": {
"type": "string",
"title": "作者"
},
"source": {
"type": "string",
"title": "来源"
},
"normal": {
"$ref": "https://reciter.binkic.com/normal/schema.json#/properties/poems/items/properties/content"
},
"comprehensions": {
"type": "array",
"title": "理解性默写题库",
"items": {
"type": "object",
"title": "单条理解性默写题目",
"properties": {
"content": {
"$ref": "https://reciter.binkic.com/comprehensions/schema.json#/properties/comprehensions/items/properties/content"
},
"answer": {
"$ref": "https://reciter.binkic.com/comprehensions/schema.json#/properties/comprehensions/items/properties/answer"
}
},
"required": [
"content",
"answer"
]
}
}
},
"required": [
"title",
"normal"
]
}
}
},
"required": [
"repositories"
]
}