-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpreset_defaults.json
40 lines (40 loc) · 1.02 KB
/
preset_defaults.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/ideditor/schema-builder/raw/main/schemas/preset_defaults.json",
"title": "Default presets",
"description": "Directory of the IDs of the presets or categories to be shown in the default list for each geometry type.",
"type": "object",
"properties": {
"point": {
"type": "array",
"items": {
"type": "string"
}
},
"vertex": {
"type": "array",
"items": {
"type": "string"
}
},
"line": {
"type": "array",
"items": {
"type": "string"
}
},
"area": {
"type": "array",
"items": {
"type": "string"
}
},
"relation": {
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
}