-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlgui2Skin.json
More file actions
44 lines (44 loc) · 1.58 KB
/
lgui2Skin.json
File metadata and controls
44 lines (44 loc) · 1.58 KB
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
41
42
43
44
{
"$schema":"http://json-schema.org/draft-07/schema#",
"type":"object",
"title":"LavishGUI 2 Skin",
"description": "A LavishGUI 2 Skin containing templates",
"properties":{
"name":{
"type":"string",
"description":"The Name of the Skin"
},
"templates":{
"type":"object",
"description": "A set of Templates to add to the Skin. Each Template can be referred to by the name provided here to define it.",
"additionalProperties": {
"description": "A Template to add to the Skin"
}
},
"brushes":{
"type":"object",
"description": "A set of Brushes to add to the Skin. Each Brush can be referred to by the name provided here to define it.",
"additionalProperties": {
"allOf": [
{
"$ref": "http://www.lavishsoft.com/schema/lgui2Brush.json"
}
],
"description": "A Brush to add to the Skin"
}
},
"fonts":{
"type":"object",
"description": "A set of Font Styles to add to the Skin. Each Font Style can be referred to by the name provided here to define it.",
"additionalProperties": {
"allOf": [
{
"$ref": "http://www.lavishsoft.com/schema/lgui2Font.json"
}
],
"description": "A Font to add to the Skin"
}
}
},
"required":["name"]
}