forked from MapComplete/MapComplete
Add json schema files for the layout-config.json
This commit is contained in:
parent
bb283b59a4
commit
e15ec387a2
25 changed files with 7340 additions and 0 deletions
35
Docs/Schemas/MoveConfigJsonJSC.ts
Normal file
35
Docs/Schemas/MoveConfigJsonJSC.ts
Normal file
|
@ -0,0 +1,35 @@
|
|||
export default {
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"$ref": "#/definitions/MoveConfigJson",
|
||||
"definitions": {
|
||||
"MoveConfigJson": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"enableImproveAccuracy": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"const": true
|
||||
},
|
||||
{
|
||||
"type": "boolean"
|
||||
}
|
||||
],
|
||||
"description": "One default reason to move a point is to improve accuracy. Set to false to disable this reason"
|
||||
},
|
||||
"enableRelocation": {
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"const": true
|
||||
},
|
||||
{
|
||||
"type": "boolean"
|
||||
}
|
||||
],
|
||||
"description": "One default reason to move a point is because it has relocated Set to false to disable this reason"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue