Skip to content

Commit ad9c5f0

Browse files
committed
feat(create): New feature : create Volume of Interest
1 parent 24a9c11 commit ad9c5f0

5 files changed

Lines changed: 102 additions & 385 deletions

File tree

opengeodeweb_back_schemas.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,42 @@
7777
"z"
7878
],
7979
"additionalProperties": false
80+
},
81+
"create_voi": {
82+
"$id": "opengeodeweb_back/create/create_voi",
83+
"route": "/create_voi",
84+
"methods": [
85+
"POST"
86+
],
87+
"type": "object",
88+
"properties": {
89+
"name": {
90+
"type": "string",
91+
"description": "Name of the VOI"
92+
},
93+
"aoi_id": {
94+
"type": "string",
95+
"description": "ID of the corresponding AOI from which to take X and Y coordinates"
96+
},
97+
"z_min": {
98+
"type": "number",
99+
"description": "Minimum Z coordinate for the VOI"
100+
},
101+
"z_max": {
102+
"type": "number",
103+
"description": "Maximum Z coordinate for the VOI"
104+
},
105+
"id": {
106+
"type": "string"
107+
}
108+
},
109+
"required": [
110+
"name",
111+
"aoi_id",
112+
"z_min",
113+
"z_max"
114+
],
115+
"additionalProperties": false
80116
}
81117
},
82118
"models": {

schemas.json

Lines changed: 0 additions & 348 deletions
This file was deleted.

0 commit comments

Comments
 (0)