Skip to content

Commit

Permalink
chore: mod update
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 14, 2024
1 parent c21bf73 commit f02c3ad
Show file tree
Hide file tree
Showing 7 changed files with 8,791 additions and 238 deletions.
16 changes: 13 additions & 3 deletions .github/json-patch-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,32 @@
"required": ["value", "op", "path"],
"properties": {
"path": { "type": "string" },
"op": { "description": "The operation to perform.", "type": "string", "enum": ["add", "replace", "test"] },
"op": {
"description": "The operation to perform.",
"type": "string",
"enum": ["add", "replace", "test"]
},
"value": { "description": "The value to add, replace or test." }
}
},
{
"additionalProperties": false,
"required": ["op", "path"],
"properties": { "path": { "type": "string" }, "op": { "description": "The operation to perform.", "type": "string", "enum": ["remove"] } }
"properties": {
"path": { "type": "string" },
"op": { "description": "The operation to perform.", "type": "string", "enum": ["remove"] }
}
},
{
"additionalProperties": false,
"required": ["from", "op", "path"],
"properties": {
"path": { "type": "string" },
"op": { "description": "The operation to perform.", "type": "string", "enum": ["move", "copy"] },
"from": { "type": "string", "description": "A JSON Pointer path pointing to the location to move/copy from." }
"from": {
"type": "string",
"description": "A JSON Pointer path pointing to the location to move/copy from."
}
}
}
]
Expand Down
9 changes: 7 additions & 2 deletions .github/repository-schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"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" } },
"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" }
},
"additionalProperties": false,
"definitions": {
"RepositoryItem": {
Expand Down Expand Up @@ -557,6 +559,9 @@
},
"title": "Configuration"
},
"ConfigurationReference": { "anyOf": [{ "$ref": "#/definitions/Configuration" }, { "type": "string" }], "title": "ConfigurationReference" }
"ConfigurationReference": {
"anyOf": [{ "$ref": "#/definitions/Configuration" }, { "type": "string" }],
"title": "ConfigurationReference"
}
}
}
16 changes: 14 additions & 2 deletions .github/unlockables-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,22 @@
"Perks": { "type": "array", "items": { "type": "string" } }
}
},
"Gameplay": { "type": "object", "properties": { "range": { "type": "number" }, "damage": { "type": "number" }, "clipsize": { "type": "number" }, "rateoffire": { "type": "number" } } },
"Gameplay": {
"type": "object",
"properties": {
"range": { "type": "number" },
"damage": { "type": "number" },
"clipsize": { "type": "number" },
"rateoffire": { "type": "number" }
}
},
"LoadoutSettings": {
"type": "object",
"properties": { "GearSlotsEnabledCount": { "type": "integer" }, "GearSlotsAllowContainers": { "type": "boolean" }, "ConcealedWeaponSlotEnabled": { "type": "boolean" } }
"properties": {
"GearSlotsEnabledCount": { "type": "integer" },
"GearSlotsAllowContainers": { "type": "boolean" },
"ConcealedWeaponSlotEnabled": { "type": "boolean" }
}
},
"Qualities": { "type": "object" },
"Quality": { "anyOf": [{ "type": "integer" }, { "type": "string" }] }
Expand Down
Loading

0 comments on commit f02c3ad

Please sign in to comment.