Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions opengeodeweb_back_schemas.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,43 @@
{
"opengeodeweb_back": {
"create": {
"create_voi": {
"$id": "opengeodeweb_back/create/create_voi",
"route": "/create_voi",
"methods": [
"POST"
],
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the VOI"
},
"aoi_id": {
"type": "string",
"description": "ID of the corresponding AOI"
},
"z_min": {
"type": "number",
"description": "Minimum Z coordinate"
},
"z_max": {
"type": "number",
"description": "Maximum Z coordinate"
},
"id": {
"type": "string",
"description": "Optional ID for updating existing VOI"
}
},
"required": [
"name",
"aoi_id",
"z_min",
"z_max"
],
"additionalProperties": false
},
"create_point": {
"$id": "opengeodeweb_back/create/create_point",
"route": "/create_point",
Expand Down Expand Up @@ -61,8 +98,7 @@
],
"additionalProperties": false
},
"minItems": 4,
"maxItems": 4
"minItems": 3
},
"z": {
"type": "number"
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,3 @@ werkzeug==3.1.2
# flask
# flask-cors

opengeodeweb-microservice==1.*,>=1.0.6rc1
Loading