2021-12-08 22:49:30 +00:00
|
|
|
{
|
|
|
|
"$schema": "https://raw.githubusercontent.com/dolphin-emu/dolphin/master/docs/game-mod-descriptor.json",
|
|
|
|
"title": "Dolphin Game Mod Descriptor",
|
|
|
|
"type": "object",
|
|
|
|
"required": ["type", "version", "base-file"],
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"pattern": "^dolphin-game-mod-descriptor$"
|
|
|
|
},
|
|
|
|
"version": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"base-file": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"display-name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2022-01-02 05:06:53 +00:00
|
|
|
"maker": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2021-12-08 22:49:30 +00:00
|
|
|
"banner": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"riivolution": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["patches"],
|
|
|
|
"properties": {
|
|
|
|
"patches": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["xml", "root", "options"],
|
|
|
|
"properties": {
|
|
|
|
"xml": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"root": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"options": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["choice"],
|
|
|
|
"properties": {
|
|
|
|
"section-name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"option-id": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"option-name": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"choice": {
|
|
|
|
"type": "integer"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|