-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheditConfig.json
53 lines (53 loc) · 1.38 KB
/
editConfig.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
{
"edit_polygons": {
"layerName": "Polygons",
"geomType": "Polygon",
"fields": [
{
"id": "name",
"name": "Name",
"type": "text",
"constraints": {
"maxLength": 255
}
},{
"id": "beschreibung",
"name": "Description",
"type": "text"
},{
"id": "nummer",
"name": "Number",
"type": "number",
"constraints": {
"step": 1
}
},{
"id": "klasse",
"name": "Class",
"type": "number",
"constraints": {
"min": 0,
"max": 255,
"step": 1
}
},{
"id": "wert",
"name": "Value",
"type": "number"
},{
"id": "genauigkeit",
"name": "Precision",
"type": "number",
"constraints": {
"min": -99,
"max": 99,
"step": 0.01
}
},{
"id": "datum",
"name": "Date",
"type": "date"
}
]
}
}