This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
moje-skoly_update-schema.json
133 lines (133 loc) · 3.32 KB
/
moje-skoly_update-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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "http://nase-skoly.cz/",
"type": "object",
"properties": {
"RED-IZO": {
"description": "The RED-IZO value given by MŠMT.",
"type": "string"
},
"metadata": {
"type": "object",
"description": "Information about the school with fixed structure.",
"$ref": "#/definitions/metadata"
},
"units": {
"type": "array",
"description": "Information about the units of the school",
"items": {
"type": "object",
"$ref": "#/definitions/unit"
}
}
},
"required": [ "RED-IZO" ],
"definitions": {
"address": {
"properties": {
"street": { "type": "string" },
"city": { "type": "string" },
"postalCode": { "type": "string" },
"region": { "type": "string" },
"location": {
"type": "object",
"description": "The geographical coordinates of the main school building or its unit.",
"properties": {
"lat": { "type": "number" },
"lon": { "type": "number" }
}
},
"googleId": { "type": "string" }
}
},
"contact": {
"type": "object",
"properties": {
"phoneNumbers": {
"type": "array",
"items": { "type": "string" }
},
"emails": {
"type": "array",
"items": { "type": "string" }
},
"websites": {
"type": "array",
"items": { "type": "string" }
}
}
},
"metadata": {
"type": "object",
"properties": {
"name": {
"description": "The name of the school or its unit.",
"type": "string"
},
"headmaster": {
"type": "object",
"description": "The information about the headmaster of the school or its unit.",
"properties": {
"name": { "type": "string" }
},
"required": [ "name" ]
},
"contact": {
"type": "object",
"$ref": "#/definitions/contact"
},
"address": {
"type": "object",
"$ref": "#/definitions/address"
}
}
},
"unit": {
"type": "object",
"properties": {
"IZO": { "type": "string" },
"type": { "type": "string" },
"metadata": {
"type": "object",
"$ref": "#/definitions/metadata"
},
"sections": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/sections"
}
}
},
"required": [ "IZO" ]
},
"sections": {
"type": "object",
"properties": {
"title": { "type": "string" },
"information": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/pieceOfInformation"
}
}
},
"required": [ "title", "information" ]
},
"pieceOfInformation": {
"type": "object",
"properties": {
"key": {
"description": "The title of the piece of information.",
"type": "string"
},
"value": {
"description": "The textual value of the item.",
"type": "string"
}
},
"required": [ "key", "value" ]
}
}
}