Also disallow "..._Localised" properties in "Factions" list

This commit is contained in:
Jonathan Harris 2019-01-08 19:56:09 +00:00
parent 2e1881fdcc
commit 7f35b0ba28

View File

@ -33,7 +33,7 @@
"type" : "object",
"description" : "Contains all properties from the listed events in the client's journal minus Localised strings and the properties marked below as 'disallowed'",
"additionalProperties" : true,
"required" : [ "timestamp", "event", "StarSystem", "StarPos", "SystemAddress" ],
"required" : [ "timestamp", "event", "StarSystem", "StarPos", "SystemAddress" ],
"properties" : {
"timestamp": {
"type" : "string",
@ -69,6 +69,9 @@
"HomeSystem" : { "$ref" : "#/definitions/disallowed" },
"MyReputation" : { "$ref" : "#/definitions/disallowed" },
"SquadronFaction" : { "$ref" : "#/definitions/disallowed" }
},
"patternProperties" : {
"_Localised$" : { "$ref" : "#/definitions/disallowed" }
}
}
},