|
1 | 1 | { |
2 | 2 | "opengeodeweb_back": { |
3 | 3 | "create": { |
4 | | - "create_voi": { |
5 | | - "$id": "opengeodeweb_back/create/create_voi", |
6 | | - "route": "/create_voi", |
7 | | - "methods": [ |
8 | | - "POST" |
9 | | - ], |
10 | | - "type": "object", |
11 | | - "properties": { |
12 | | - "name": { |
13 | | - "type": "string", |
14 | | - "description": "Name of the VOI" |
15 | | - }, |
16 | | - "aoi_id": { |
17 | | - "type": "string", |
18 | | - "description": "ID of the corresponding AOI" |
19 | | - }, |
20 | | - "z_min": { |
21 | | - "type": "number", |
22 | | - "description": "Minimum Z coordinate" |
23 | | - }, |
24 | | - "z_max": { |
25 | | - "type": "number", |
26 | | - "description": "Maximum Z coordinate" |
27 | | - }, |
28 | | - "id": { |
29 | | - "type": "string", |
30 | | - "description": "Optional ID for updating existing VOI" |
31 | | - } |
32 | | - }, |
33 | | - "required": [ |
34 | | - "name", |
35 | | - "aoi_id", |
36 | | - "z_min", |
37 | | - "z_max" |
38 | | - ], |
39 | | - "additionalProperties": false |
40 | | - }, |
41 | | - "create_point": { |
42 | | - "$id": "opengeodeweb_back/create/create_point", |
43 | | - "route": "/create_point", |
| 4 | + "point": { |
| 5 | + "$id": "opengeodeweb_back/create/point", |
| 6 | + "route": "/point", |
44 | 7 | "methods": [ |
45 | 8 | "POST" |
46 | 9 | ], |
|
67 | 30 | "z" |
68 | 31 | ], |
69 | 32 | "additionalProperties": false |
70 | | - }, |
71 | | - "create_aoi": { |
72 | | - "$id": "opengeodeweb_back/create/create_aoi", |
73 | | - "route": "/create_aoi", |
74 | | - "methods": [ |
75 | | - "POST" |
76 | | - ], |
77 | | - "type": "object", |
78 | | - "properties": { |
79 | | - "name": { |
80 | | - "type": "string", |
81 | | - "description": "Name of the AOI" |
82 | | - }, |
83 | | - "points": { |
84 | | - "type": "array", |
85 | | - "items": { |
86 | | - "type": "object", |
87 | | - "properties": { |
88 | | - "x": { |
89 | | - "type": "number" |
90 | | - }, |
91 | | - "y": { |
92 | | - "type": "number" |
93 | | - } |
94 | | - }, |
95 | | - "required": [ |
96 | | - "x", |
97 | | - "y" |
98 | | - ], |
99 | | - "additionalProperties": false |
100 | | - }, |
101 | | - "minItems": 3 |
102 | | - }, |
103 | | - "z": { |
104 | | - "type": "number" |
105 | | - }, |
106 | | - "id": { |
107 | | - "type": "string" |
108 | | - } |
109 | | - }, |
110 | | - "required": [ |
111 | | - "name", |
112 | | - "points", |
113 | | - "z" |
114 | | - ], |
115 | | - "additionalProperties": false |
116 | 33 | } |
117 | 34 | }, |
118 | 35 | "models": { |
|
343 | 260 | "required": [], |
344 | 261 | "additionalProperties": false |
345 | 262 | }, |
| 263 | + "import_extension": { |
| 264 | + "$id": "opengeodeweb_back/import_extension", |
| 265 | + "route": "/import_extension", |
| 266 | + "methods": [ |
| 267 | + "POST" |
| 268 | + ], |
| 269 | + "type": "object", |
| 270 | + "properties": {}, |
| 271 | + "required": [], |
| 272 | + "additionalProperties": false |
| 273 | + }, |
346 | 274 | "geographic_coordinate_systems": { |
347 | 275 | "$id": "opengeodeweb_back/geographic_coordinate_systems", |
348 | 276 | "route": "/geographic_coordinate_systems", |
|
0 commit comments