Skip to content

Commit 585a408

Browse files
Apply prepare changes
1 parent 8a07a7f commit 585a408

3 files changed

Lines changed: 121 additions & 41 deletions

File tree

opengeodeweb_back_schemas.json

Lines changed: 121 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"point": {
55
"$id": "opengeodeweb_back/create/point",
66
"route": "/point",
7-
"methods": ["POST"],
7+
"methods": [
8+
"POST"
9+
],
810
"type": "object",
911
"properties": {
1012
"name": {
@@ -21,44 +23,60 @@
2123
"type": "number"
2224
}
2325
},
24-
"required": ["name", "x", "y", "z"],
26+
"required": [
27+
"name",
28+
"x",
29+
"y",
30+
"z"
31+
],
2532
"additionalProperties": false
2633
}
2734
},
2835
"models": {
2936
"model_components": {
3037
"$id": "opengeodeweb_back/models/model_components",
3138
"route": "/model_components",
32-
"methods": ["POST"],
39+
"methods": [
40+
"POST"
41+
],
3342
"type": "object",
3443
"properties": {
3544
"id": {
3645
"type": "string",
3746
"minLength": 1
3847
}
3948
},
40-
"required": ["id"],
49+
"required": [
50+
"id"
51+
],
4152
"additionalProperties": false
4253
}
4354
},
4455
"vertex_attribute_names": {
4556
"$id": "opengeodeweb_back/vertex_attribute_names",
4657
"route": "/vertex_attribute_names",
47-
"methods": ["POST"],
58+
"methods": [
59+
"POST"
60+
],
4861
"type": "object",
4962
"properties": {
5063
"id": {
5164
"type": "string",
5265
"minLength": 1
5366
}
5467
},
55-
"required": ["id"],
68+
"required": [
69+
"id"
70+
],
5671
"additionalProperties": false
5772
},
5873
"upload_file": {
5974
"$id": "opengeodeweb_back/upload_file",
6075
"route": "/upload_file",
61-
"methods": ["OPTIONS", "PUT"],
76+
"methods": [
77+
"OPTIONS",
78+
"PUT"
79+
],
6280
"type": "object",
6381
"properties": {
6482
"filename": {
@@ -71,21 +89,27 @@
7189
"texture_coordinates": {
7290
"$id": "opengeodeweb_back/texture_coordinates",
7391
"route": "/texture_coordinates",
74-
"methods": ["POST"],
92+
"methods": [
93+
"POST"
94+
],
7595
"type": "object",
7696
"properties": {
7797
"id": {
7898
"type": "string",
7999
"minLength": 1
80100
}
81101
},
82-
"required": ["id"],
102+
"required": [
103+
"id"
104+
],
83105
"additionalProperties": false
84106
},
85107
"save_viewable_file": {
86108
"$id": "opengeodeweb_back/save_viewable_file",
87109
"route": "/save_viewable_file",
88-
"methods": ["POST"],
110+
"methods": [
111+
"POST"
112+
],
89113
"type": "object",
90114
"properties": {
91115
"geode_object_type": {
@@ -97,41 +121,54 @@
97121
"minLength": 1
98122
}
99123
},
100-
"required": ["geode_object_type", "filename"],
124+
"required": [
125+
"geode_object_type",
126+
"filename"
127+
],
101128
"additionalProperties": false
102129
},
103130
"polyhedron_attribute_names": {
104131
"$id": "opengeodeweb_back/polyhedron_attribute_names",
105132
"route": "/polyhedron_attribute_names",
106-
"methods": ["POST"],
133+
"methods": [
134+
"POST"
135+
],
107136
"type": "object",
108137
"properties": {
109138
"id": {
110139
"type": "string",
111140
"minLength": 1
112141
}
113142
},
114-
"required": ["id"],
143+
"required": [
144+
"id"
145+
],
115146
"additionalProperties": false
116147
},
117148
"polygon_attribute_names": {
118149
"$id": "opengeodeweb_back/polygon_attribute_names",
119150
"route": "/polygon_attribute_names",
120-
"methods": ["POST"],
151+
"methods": [
152+
"POST"
153+
],
121154
"type": "object",
122155
"properties": {
123156
"id": {
124157
"type": "string",
125158
"minLength": 1
126159
}
127160
},
128-
"required": ["id"],
161+
"required": [
162+
"id"
163+
],
129164
"additionalProperties": false
130165
},
131166
"ping": {
132167
"$id": "opengeodeweb_back/ping",
133168
"route": "/ping",
134-
"methods": ["POST"],
169+
"methods": [
170+
"POST"
171+
],
135172
"type": "object",
136173
"properties": {},
137174
"required": [],
@@ -140,7 +177,9 @@
140177
"missing_files": {
141178
"$id": "opengeodeweb_back/missing_files",
142179
"route": "/missing_files",
143-
"methods": ["POST"],
180+
"methods": [
181+
"POST"
182+
],
144183
"type": "object",
145184
"properties": {
146185
"geode_object_type": {
@@ -152,13 +191,18 @@
152191
"minLength": 1
153192
}
154193
},
155-
"required": ["geode_object_type", "filename"],
194+
"required": [
195+
"geode_object_type",
196+
"filename"
197+
],
156198
"additionalProperties": false
157199
},
158200
"kill": {
159201
"$id": "opengeodeweb_back/kill",
160202
"route": "/kill",
161-
"methods": ["POST"],
203+
"methods": [
204+
"POST"
205+
],
162206
"type": "object",
163207
"properties": {},
164208
"required": [],
@@ -167,7 +211,9 @@
167211
"inspect_file": {
168212
"$id": "opengeodeweb_back/inspect_file",
169213
"route": "/inspect_file",
170-
"methods": ["POST"],
214+
"methods": [
215+
"POST"
216+
],
171217
"type": "object",
172218
"properties": {
173219
"filename": {
@@ -179,13 +225,18 @@
179225
"minLength": 1
180226
}
181227
},
182-
"required": ["filename", "geode_object_type"],
228+
"required": [
229+
"filename",
230+
"geode_object_type"
231+
],
183232
"additionalProperties": false
184233
},
185234
"import_project": {
186235
"$id": "opengeodeweb_back/import_project",
187236
"route": "/import_project",
188-
"methods": ["POST"],
237+
"methods": [
238+
"POST"
239+
],
189240
"type": "object",
190241
"properties": {},
191242
"required": [],
@@ -194,21 +245,27 @@
194245
"geographic_coordinate_systems": {
195246
"$id": "opengeodeweb_back/geographic_coordinate_systems",
196247
"route": "/geographic_coordinate_systems",
197-
"methods": ["POST"],
248+
"methods": [
249+
"POST"
250+
],
198251
"type": "object",
199252
"properties": {
200253
"geode_object_type": {
201254
"type": "string",
202255
"minLength": 1
203256
}
204257
},
205-
"required": ["geode_object_type"],
258+
"required": [
259+
"geode_object_type"
260+
],
206261
"additionalProperties": false
207262
},
208263
"geode_objects_and_output_extensions": {
209264
"$id": "opengeodeweb_back/geode_objects_and_output_extensions",
210265
"route": "/geode_objects_and_output_extensions",
211-
"methods": ["POST"],
266+
"methods": [
267+
"POST"
268+
],
212269
"type": "object",
213270
"properties": {
214271
"geode_object_type": {
@@ -220,27 +277,36 @@
220277
"minLength": 1
221278
}
222279
},
223-
"required": ["geode_object_type", "filename"],
280+
"required": [
281+
"geode_object_type",
282+
"filename"
283+
],
224284
"additionalProperties": false
225285
},
226286
"geode_object_inheritance": {
227287
"$id": "opengeodeweb_back/geode_object_inheritance",
228288
"route": "/geode_object_inheritance",
229-
"methods": ["POST"],
289+
"methods": [
290+
"POST"
291+
],
230292
"type": "object",
231293
"properties": {
232294
"geode_object_type": {
233295
"type": "string",
234296
"minLength": 1
235297
}
236298
},
237-
"required": ["geode_object_type"],
299+
"required": [
300+
"geode_object_type"
301+
],
238302
"additionalProperties": false
239303
},
240304
"export_project": {
241305
"$id": "opengeodeweb_back/export_project",
242306
"route": "/export_project",
243-
"methods": ["POST"],
307+
"methods": [
308+
"POST"
309+
],
244310
"type": "object",
245311
"properties": {
246312
"snapshot": {
@@ -251,59 +317,76 @@
251317
"minLength": 1
252318
}
253319
},
254-
"required": ["snapshot", "filename"],
320+
"required": [
321+
"snapshot",
322+
"filename"
323+
],
255324
"additionalProperties": false
256325
},
257326
"edge_attribute_names": {
258327
"$id": "opengeodeweb_back/edge_attribute_names",
259328
"route": "/edge_attribute_names",
260-
"methods": ["POST"],
329+
"methods": [
330+
"POST"
331+
],
261332
"type": "object",
262333
"properties": {
263334
"id": {
264335
"type": "string",
265336
"minLength": 1
266337
}
267338
},
268-
"required": ["id"],
339+
"required": [
340+
"id"
341+
],
269342
"additionalProperties": false
270343
},
271344
"cell_attribute_names": {
272345
"$id": "opengeodeweb_back/cell_attribute_names",
273346
"route": "/cell_attribute_names",
274-
"methods": ["POST"],
347+
"methods": [
348+
"POST"
349+
],
275350
"type": "object",
276351
"properties": {
277352
"id": {
278353
"type": "string",
279354
"minLength": 1
280355
}
281356
},
282-
"required": ["id"],
357+
"required": [
358+
"id"
359+
],
283360
"additionalProperties": false
284361
},
285362
"allowed_objects": {
286363
"$id": "opengeodeweb_back/allowed_objects",
287364
"route": "/allowed_objects",
288-
"methods": ["POST"],
365+
"methods": [
366+
"POST"
367+
],
289368
"type": "object",
290369
"properties": {
291370
"filename": {
292371
"type": "string",
293372
"minLength": 1
294373
}
295374
},
296-
"required": ["filename"],
375+
"required": [
376+
"filename"
377+
],
297378
"additionalProperties": false
298379
},
299380
"allowed_files": {
300381
"$id": "opengeodeweb_back/allowed_files",
301382
"route": "/allowed_files",
302-
"methods": ["POST"],
383+
"methods": [
384+
"POST"
385+
],
303386
"type": "object",
304387
"properties": {},
305388
"required": [],
306389
"additionalProperties": false
307390
}
308391
}
309-
}
392+
}

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,3 @@ werkzeug==3.1.2
6060
# flask
6161
# flask-cors
6262

63-
opengeodeweb-microservice==1.*,>=1.0.15

0 commit comments

Comments
 (0)