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
57 changes: 57 additions & 0 deletions opengeodeweb_back_schemas.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,63 @@
{
"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"
},
"min_x": {
"type": "number",
"description": "Minimum X coordinate from AOI"
},
"min_y": {
"type": "number",
"description": "Minimum Y coordinate from AOI"
},
"max_x": {
"type": "number",
"description": "Maximum X coordinate from AOI"
},
"max_y": {
"type": "number",
"description": "Maximum Y coordinate from 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",
"min_x",
"min_y",
"max_x",
"max_y",
"z_min",
"z_max"
],
"additionalProperties": false
},
"create_point": {
"$id": "opengeodeweb_back/create/create_point",
"route": "/create_point",
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
Loading