diff --git a/schemas/journal-v1.0.json b/schemas/journal-v1.0.json index 839a5b6..2df857a 100644 --- a/schemas/journal-v1.0.json +++ b/schemas/journal-v1.0.json @@ -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" ], + "required" : [ "timestamp", "event", "StarSystem" ], "properties" : { "timestamp": { "type" : "string", @@ -42,6 +42,11 @@ "event" : { "enum" : [ "Docked", "FSDJump", "Scan" ] }, + "StarSystem": { + "type" : "string", + "minLength" : 1, + "description" : "Must be added by the sender if not present in the journal event" + }, "CockpitBreach" : { "$ref" : "#/definitions/disallowed" }, "BoostUsed" : { "$ref" : "#/definitions/disallowed" },