generated from fionn/ts-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.2 KiB
45 lines
1.2 KiB
{
|
|
"$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" ]
|
|
}
|