Also disallow _Localised properties in Materials & StationEconomies

This commit is contained in:
Jonathan Harris 2019-02-10 22:36:56 +00:00
parent 7f35b0ba28
commit 839a68f31d

View File

@ -86,7 +86,17 @@
"Wanted" : { "$ref" : "#/definitions/disallowed" } "Wanted" : { "$ref" : "#/definitions/disallowed" }
}, },
"patternProperties" : { "patternProperties" : {
"_Localised$" : { "$ref" : "#/definitions/disallowed" } "_Localised$" : { "$ref" : "#/definitions/disallowed" },
"^(Materials|StationEconomies)$" : {
"type" : "array",
"description" : "Present in Scan and Docked messages",
"items" : {
"type" : "object",
"patternProperties" : {
"_Localised$" : { "$ref" : "#/definitions/disallowed" }
}
}
}
} }
} }
}, },