-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpreset_category.json
More file actions
28 lines (28 loc) · 896 Bytes
/
preset_category.json
File metadata and controls
28 lines (28 loc) · 896 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/ideditor/schema-builder/raw/main/schemas/preset_category.json",
"title": "Preset category",
"description": "An ordered grouping of presets",
"type": "object",
"properties": {
"name": {
"description": "The title of this category in US English",
"type": "string"
},
"icon": {
"description": "Name of preset icon which represents this preset",
"type": "string"
},
"members": {
"description": "The IDs of the presets in this category",
"type": "array",
"minItems": 1,
"uniqueItems": true,
"items": {
"type": "string"
}
}
},
"required": ["name", "icon", "members"],
"additionalProperties": false
}