Schema Overview
The descriptor file uses JSON Schema to validate mod configuration files. The official schema is available at:Root Object
The root object must be a valid JSON object with the following required and optional properties.Required Properties
Optional Properties
Example Structure
Field Specifications
type
Type:stringPattern:
^dolphin-game-mod-descriptor$Required: Yes Must exactly match the string
"dolphin-game-mod-descriptor". This identifies the file as a valid Dolphin game mod descriptor.
version
Type:integerRequired: Yes Indicates the version of the descriptor format being used. This allows for future schema evolution while maintaining backward compatibility.
base-file
Type:stringRequired: Yes Path to the base game file (ISO, WBFS, etc.) that this mod applies to. Can be relative or absolute.
display-name
Type:stringRequired: No Human-readable name for the mod as it should appear in Dolphin’s interface.
maker
Type:stringRequired: No Identifies the creator, author, or team responsible for the mod.
banner
Type:stringRequired: No Path to a banner image file for the mod. Typically displayed in Dolphin’s game list or mod selection interface.
Riivolution Object
Theriivolution object configures Riivolution-based patches, which are commonly used for Wii game modifications.
riivolution Properties
patches Array
Each patch object in thepatches array has the following structure:
Patch Object Example
Patch Object Example
options Array
Each option object configures a specific Riivolution option.The
choice property is required and specifies which choice is selected for this option (typically 0 for disabled, 1+ for enabled/variants).Complete Example
Validation Rules
Type Pattern
Thetype field must match the exact pattern:
Required Fields
At the root level:typeversionbase-file
riivolution object:
patches
xmlrootoptions
choice
Type Constraints
Usage in Dolphin
To use a game mod descriptor:- Create a JSON file following this schema
- Place it in Dolphin’s load directory alongside your game files
- Configure the mod options as needed in the
riivolution.patchesarray - Launch the game through Dolphin