This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.schema.json
77 lines (77 loc) · 2.08 KB
/
data.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/manami-project/modb-extension/raw/master/data.schema.json",
"title": "modb-extension",
"description": "Additional data extending anime-offline-database as well as a library which allows to easily create and access the data.",
"type": "object",
"required": [
"sources"
],
"properties": {
"sources": {
"description": "URLs to the pages of the meta data providers for this anime.",
"type": "array",
"uniqueItems": true,
"items": {
"type": "string"
}
},
"synopsis": {
"description": "Short text describing the anime and its author.",
"type": "object",
"required": [
"text",
"author",
"lastUpdate"
],
"properties": {
"text": {
"description": "Short text describing the anime.",
"type": "string"
},
"author": {
"description": "Author of the text.",
"type": "string"
},
"lastUpdate": {
"type": "string",
"description": "Date of the last modification."
}
}
},
"score": {
"type": "object",
"description": "Various types of average scores aggregated by the arithmetic mean scores by the meta data providers",
"required": [
"arithmeticMean",
"arithmeticGeometricMean",
"median",
"lastUpdate"
],
"properties": {
"arithmeticMean": {
"type": "number",
"description": "Arithmetic mean.",
"minimum": 0.0,
"maximum": 10.0
},
"arithmeticGeometricMean": {
"type": "number",
"description": "Arithmetic-Geometric-Mean.",
"minimum": 0.0,
"maximum": 10.0
},
"median": {
"type": "number",
"description": "Median.",
"minimum": 0.0,
"maximum": 10.0
},
"lastUpdate": {
"type": "string",
"description": "Date of the last modification."
}
}
}
}
}