Skip to content
Open
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
32 changes: 32 additions & 0 deletions schemas/vector/osmChangeGeneratorServer/v1.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$id": "https://mapcolonies.com/vector/osmChangeGeneratorServer/v1",
"type": "object",
"title": "vectorOsmChangeGeneratorServerSchemaV1",
"description": "Vector's Osm-Change-Generator-Server schema",
"allOf": [
{
"$ref": "https://mapcolonies.com/common/boilerplate/v2"
},
{
"$ref": "#/definitions/appSchema"
}
],
"definitions": {
"appSchema": {
"type": "object",
"properties": {
"app": {
"type": "object",
"properties": {
"shouldHandle3D": {
"type": "boolean",
"description": "Should handle 3D geometries. If true, it will add altitude tag with the GeoJson's geo altitude value.",
"default": false,
"x-env-value": "APP_SHOULD_HANDLE_3D"
}
}
}
}
}
}
}
Loading