From 33911c32093f4c4cee01f4b1d943c05efdf9fe5b Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 27 Sep 2022 14:47:26 +0100 Subject: [PATCH] schemas/outfitting: `gameversion` & `gamebuild` in header --- schemas/outfitting-README.md | 28 ++++++++++++++++++++++++++++ schemas/outfitting-v2.0.json | 10 ++++++++++ 2 files changed, 38 insertions(+) diff --git a/schemas/outfitting-README.md b/schemas/outfitting-README.md index e3e18bf..6440bff 100644 --- a/schemas/outfitting-README.md +++ b/schemas/outfitting-README.md @@ -53,3 +53,31 @@ station. Namely: #### horizons and odyssey flags Please read [horizons and odyssey flags](../docs/Developers.md#horizons-and-odyssey-flags) in the Developers' documentation. + +#### gameversion +You **MUST** always add this field **to the header object**. + +1. If you are using Journal files directly then you **MUST** use the value + of the `gameversion` element from the`Fileheader` event. +2. If you are using the CAPI `/journal` endpoint to retrieve and process + Journal events then: + 1. You will not have `Fileheader` available. + 2. If `gameversion` is present in the `LoadGame` event, as in 4.0 clients, + use its value. + 3. If `LoadGame` does not have a `gameversion` element, as with 3.8 Horizons + clients (up to at least `3.8.0.407`), you **MUST** set `gameversion`, but + with the value `"CAPI"`. + +#### gamebuild +You **MUST** always add this field **to the header object**. + +1. If you are using Journal files directly then you **MUST** use the value + of the `build` value from the`Fileheader` event. +2. If you are using the CAPI `/journal` endpoint to retrieve and process + Journal events then: + 1. You will not have `Fileheader` available. + 2. If `build` is present in the `LoadGame` event, as in 4.0 clients, use + its value. + 3. If `LoadGame` does not have a `build` element, as with 3.8 Horizons + clients (up to at least `3.8.0.407`), you **MUST** set `gamebuild`, but + with the value `"CAPI"`. diff --git a/schemas/outfitting-v2.0.json b/schemas/outfitting-v2.0.json index a8959e0..eab688e 100644 --- a/schemas/outfitting-v2.0.json +++ b/schemas/outfitting-v2.0.json @@ -16,6 +16,16 @@ "uploaderID": { "type" : "string" }, + "gameversion": { + "type" : "string", + "minLength" : 1, + "description" : "From Fileheader event if available, else LoadGame if available there." + }, + "gamebuild": { + "type" : "string", + "minLength" : 1, + "description" : "The `build` value from a Fileheader event if available, else LoadGame if available there." + }, "softwareName": { "type" : "string" },