Skip to content

Commit f5d0819

Browse files
chore: mod update
1 parent 532639d commit f5d0819

File tree

7 files changed

+256
-250
lines changed

7 files changed

+256
-250
lines changed

.github/json-patch-schema.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,32 @@
1313
"required": ["value", "op", "path"],
1414
"properties": {
1515
"path": { "type": "string" },
16-
"op": { "description": "The operation to perform.", "type": "string", "enum": ["add", "replace", "test"] },
16+
"op": {
17+
"description": "The operation to perform.",
18+
"type": "string",
19+
"enum": ["add", "replace", "test"]
20+
},
1721
"value": { "description": "The value to add, replace or test." }
1822
}
1923
},
2024
{
2125
"additionalProperties": false,
2226
"required": ["op", "path"],
23-
"properties": { "path": { "type": "string" }, "op": { "description": "The operation to perform.", "type": "string", "enum": ["remove"] } }
27+
"properties": {
28+
"path": { "type": "string" },
29+
"op": { "description": "The operation to perform.", "type": "string", "enum": ["remove"] }
30+
}
2431
},
2532
{
2633
"additionalProperties": false,
2734
"required": ["from", "op", "path"],
2835
"properties": {
2936
"path": { "type": "string" },
3037
"op": { "description": "The operation to perform.", "type": "string", "enum": ["move", "copy"] },
31-
"from": { "type": "string", "description": "A JSON Pointer path pointing to the location to move/copy from." }
38+
"from": {
39+
"type": "string",
40+
"description": "A JSON Pointer path pointing to the location to move/copy from."
41+
}
3242
}
3343
}
3444
]

.github/repository-schema.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
33
"type": "object",
4-
"patternProperties": { "^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$": { "$ref": "#/definitions/RepositoryItem" } },
4+
"patternProperties": {
5+
"^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$": { "$ref": "#/definitions/RepositoryItem" }
6+
},
57
"additionalProperties": false,
68
"definitions": {
79
"RepositoryItem": {
@@ -557,6 +559,9 @@
557559
},
558560
"title": "Configuration"
559561
},
560-
"ConfigurationReference": { "anyOf": [{ "$ref": "#/definitions/Configuration" }, { "type": "string" }], "title": "ConfigurationReference" }
562+
"ConfigurationReference": {
563+
"anyOf": [{ "$ref": "#/definitions/Configuration" }, { "type": "string" }],
564+
"title": "ConfigurationReference"
565+
}
561566
}
562567
}

.github/unlockables-schema.json

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,22 @@
7474
"Perks": { "type": "array", "items": { "type": "string" } }
7575
}
7676
},
77-
"Gameplay": { "type": "object", "properties": { "range": { "type": "number" }, "damage": { "type": "number" }, "clipsize": { "type": "number" }, "rateoffire": { "type": "number" } } },
77+
"Gameplay": {
78+
"type": "object",
79+
"properties": {
80+
"range": { "type": "number" },
81+
"damage": { "type": "number" },
82+
"clipsize": { "type": "number" },
83+
"rateoffire": { "type": "number" }
84+
}
85+
},
7886
"LoadoutSettings": {
7987
"type": "object",
80-
"properties": { "GearSlotsEnabledCount": { "type": "integer" }, "GearSlotsAllowContainers": { "type": "boolean" }, "ConcealedWeaponSlotEnabled": { "type": "boolean" } }
88+
"properties": {
89+
"GearSlotsEnabledCount": { "type": "integer" },
90+
"GearSlotsAllowContainers": { "type": "boolean" },
91+
"ConcealedWeaponSlotEnabled": { "type": "boolean" }
92+
}
8193
},
8294
"Qualities": { "type": "object" },
8395
"Quality": { "anyOf": [{ "type": "integer" }, { "type": "string" }] }

0 commit comments

Comments
 (0)