V1 Manifest

Now we're in the present.
The V1 manifest is the current standard and addresses all the issues I had with legacy as well as expand a bit more due to growing mod complexity.

Properties

Option

Sub-Option

Nexus Data

Example

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
{
	"Version": 1,
	"Guid": "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",
	"Name": "Mod Name",
	"Description": "",
	"IconPath": "icon.png",
	"Options": [
		{
			"Name": "Option Name",
			"Description": "",
			"Include": [
				"Base"
			],
			"Image": "img.png",
			"SubOptions": [
				{
					"Name": "Sub Option Name",
					"Description": "",
					"Include": [
						"Addition"
					],
					"Image": "img.png"
				}
			]
		}
	],
	"NexusData": {
		"ModId": 109,
		"Version": "1.0.0"
	}
}