Keep SCUM data parsing plugin-owned
This commit is contained in:
+5
-1
@@ -11,7 +11,7 @@
|
||||
"items": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": ["vehicleId", "entityId", "className", "label", "x", "y", "z", "lastAccessTime", "isFunctional"],
|
||||
"required": ["vehicleId", "entityId", "className", "label", "x", "y", "z", "lastAccessTime", "isFunctional", "existsInGame", "mountedPrisonerIds", "mountedUserProfileIds", "mountedSteamIds"],
|
||||
"properties": {
|
||||
"vehicleId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
||||
"entityId": { "type": "string", "minLength": 1, "maxLength": 96 },
|
||||
@@ -19,6 +19,10 @@
|
||||
"label": { "type": "string", "maxLength": 120 },
|
||||
"lastAccessTime": { "type": ["string", "null"], "format": "date-time" },
|
||||
"isFunctional": { "type": "integer", "minimum": 0, "maximum": 1 },
|
||||
"existsInGame": { "type": "integer", "minimum": 0, "maximum": 1 },
|
||||
"mountedPrisonerIds": { "type": ["string", "null"], "maxLength": 2048 },
|
||||
"mountedUserProfileIds": { "type": ["string", "null"], "maxLength": 2048 },
|
||||
"mountedSteamIds": { "type": ["string", "null"], "maxLength": 4096 },
|
||||
"x": { "type": "number" },
|
||||
"y": { "type": "number" },
|
||||
"z": { "type": "number" }
|
||||
|
||||
Reference in New Issue
Block a user