forked from dotFionn/iassure-wx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wx-config.schema.json
44 lines (44 loc) · 1.23 KB
/
wx-config.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
{
"$id": "https://wx.dotfionn.de/wx-config.schema.json",
"title": "WX-Config",
"description": "The configuration file",
"type": "object",
"properties": {
"regions": {
"description": "The unique identifier for a product",
"type": "array",
"items": {
"type": "object",
"properties": {
"identifier": {
"type": "string",
"description": "e.g. the FIR identifier, e.g. EDGG, EDWW, EDMM, LOVV, ..."
},
"fixes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "identifier of the waypoint/fix"
},
"lat": {
"type": "number",
"description": "latitude of the waypoint"
},
"lon": {
"type": "number",
"description": "longitude of the waypoint"
}
},
"required": ["name", "lat", "lon"]
}
}
}
},
"required": ["identifier", "fixes"]
}
},
"required": [ "regions" ]
}