-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleModManagerMod.json
More file actions
145 lines (145 loc) · 4.37 KB
/
SimpleModManagerMod.json
File metadata and controls
145 lines (145 loc) · 4.37 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://withertech.com/SimpleModManagerMod.json",
"type": "object",
"title": "SimpleModManager mod.json Schema",
"description": "A file defining the metadata of a SimpleModManager mod",
"default": {},
"examples": [
{
"id": "examplemod",
"titleid": "0100000000000000",
"name": "Example",
"version": "1.0.0",
"description": "An Example Mod",
"author": "Example Author",
"website": "http://example.com",
"icon": "icon.png",
"dependencies": [
"examplemod2"
]
}
],
"required": [
"id",
"titleid",
"name",
"version",
"description",
"author",
"website",
"icon",
"dependencies"
],
"properties": {
"id": {
"$id": "#/properties/id",
"type": "string",
"title": "Mod ID",
"description": "A unique identifier for differentiating between mods",
"default": "",
"examples": [
"examplemod"
]
},
"titleid": {
"$id": "#/properties/titleid",
"type": "string",
"title": "Title ID",
"description": "The Title ID that this mod affects",
"default": "",
"examples": [
"0100000000000000"
]
},
"name": {
"$id": "#/properties/name",
"type": "string",
"title": "Name",
"description": "The name of the mod as seen in the GUI",
"default": "",
"examples": [
"Example"
]
},
"version": {
"$id": "#/properties/version",
"type": "string",
"title": "Version",
"description": "The version of the mod formatted as \"major.minor.patch\"",
"default": "",
"examples": [
"1.0.0"
]
},
"description": {
"$id": "#/properties/description",
"type": "string",
"title": "Description",
"description": "An explanation about what the mod does",
"default": "",
"examples": [
"An Example Mod"
]
},
"author": {
"$id": "#/properties/author",
"type": "string",
"title": "Author",
"description": "The author of the mod. If multiple authors seperate them with \" ,\"",
"default": "",
"examples": [
"Example Author"
]
},
"website": {
"$id": "#/properties/website",
"type": "string",
"title": "Website",
"description": "The website where this mod can be found",
"default": "",
"examples": [
"http://example.com"
]
},
"icon": {
"$id": "#/properties/icon",
"type": "string",
"title": "Icon",
"description": "The filename of the icon to be displayed in the GUI. Icon must be a 256x256 png",
"default": "",
"examples": [
"icon.png"
]
},
"dependencies": {
"$id": "#/properties/dependencies",
"type": "array",
"title": "Dependencies",
"description": "A list of Mod IDs that this mod depends on. If none leave the array empty",
"default": [],
"examples": [
[
"examplemod2"
]
],
"additionalItems": true,
"items": {
"$id": "#/properties/dependencies/items",
"anyOf": [
{
"$id": "#/properties/dependencies/items/anyOf/0",
"type": "string",
"title": "Dependency Mod ID",
"description": "The Mod ID of the dependency",
"default": "",
"examples": [
"examplemod2"
]
}
]
}
}
},
"additionalProperties": false
}