From 1043035b3332e6a82d04374e3e086af08836c82b Mon Sep 17 00:00:00 2001 From: CWA Technical User <67319337+Corona-Warn-App-Technical-User@users.noreply.github.com> Date: Fri, 30 Apr 2021 08:33:31 +0200 Subject: [PATCH] Protocol Buffer update for release 2.3.x at Thu Apr 29 17:01:51 UTC 2021 (#3017) * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/ade1bd9166337fecfe2da6c96e7f556ed834cd34 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/20da593f00910a18bb92c97767a2d66033289091 * Update from https://github.com/corona-warn-app/cwa-protocol-buffers/commit/ab28912961716d8b7cb73d593397c2d8e3f0f466 --- .../main/proto/internal/dgc/value_sets.proto | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Server-Protocol-Buffer/src/main/proto/internal/dgc/value_sets.proto diff --git a/Server-Protocol-Buffer/src/main/proto/internal/dgc/value_sets.proto b/Server-Protocol-Buffer/src/main/proto/internal/dgc/value_sets.proto new file mode 100644 index 000000000..711e7e4bd --- /dev/null +++ b/Server-Protocol-Buffer/src/main/proto/internal/dgc/value_sets.proto @@ -0,0 +1,23 @@ +// This file is auto-generated, DO NOT make any changes here +syntax = "proto3"; +package de.rki.coronawarnapp.server.protocols.internal.dgc; + + +message ValueSets { + // Vaccine or prophylaxis + ValueSet vp = 1; + // Vaccine medicinal product + ValueSet mp = 2; + // Marketing Authorization Holder + ValueSet ma = 3; +} + +message ValueSet { + // use custom message instead of map to allow for future extensions + repeated ValueSetItem items = 1; +} + +message ValueSetItem { + string key = 1; + string displayText = 2; +} \ No newline at end of file -- GitLab