Skip to content

Commit

Permalink
Add defaults for parameters (#564)
Browse files Browse the repository at this point in the history
Co-authored-by: Will Corby <[email protected]>
Co-authored-by: Noah Pilarski <[email protected]>
  • Loading branch information
3 people authored Mar 22, 2024
1 parent cd1dadc commit 1945a68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schemas/manifest_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"dependencies": {
"type": "array",
"description": "The dependencies of the mod",
"default": [],
"items": {
"type": "string",
"description": "The uniqueName of the dependency",
Expand All @@ -91,6 +92,7 @@
"minGameVersion": {
"type": "string",
"description": "The minimum version of the game that this mod is compatible with",
"default": ""
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -101,6 +103,7 @@
"maxGameVersion": {
"type": "string",
"description": "The maximum version of the game that this mod is compatible with",
"default": ""
"pattern": "^\\d+\\.\\d+\\.\\d+\\.\\d+$",
"examples": [
"1.0.0",
Expand All @@ -116,6 +119,7 @@
"incompatibleVendors": {
"type": "array",
"description": "The vendors this mod does not work on",
"default": []
"items": {
"type": "string",
"enum": [
Expand Down

0 comments on commit 1945a68

Please sign in to comment.