forked from qwc-services/qwc-elevation-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qwc-elevation-service.json
37 lines (37 loc) · 1.04 KB
/
qwc-elevation-service.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/qwc-services/qwc-elevation-service/master/schemas/qwc-elevation-service.json",
"title": "QWC Elevation Service",
"type": "object",
"properties": {
"$schema": {
"title": "JSON Schema",
"description": "Reference to JSON schema of this config",
"type": "string",
"format": "uri",
"default": "https://raw.githubusercontent.com/qwc-services/qwc-elevation-service/master/schemas/qwc-elevation-service.json"
},
"service": {
"title": "Service name",
"type": "string",
"const": "elevation"
},
"config": {
"title": "Config options",
"type": "object",
"properties": {
"elevation_dataset": {
"description": "Elevation dataset (file or URL). Example: https://data.sourcepole.com/srtm_1km_3857.tif",
"type": "string"
}
},
"required": [
"elevation_dataset"
]
}
},
"required": [
"service",
"config"
]
}