Skip to content
Snippets Groups Projects
Unverified Commit 5dced410 authored by CWA Technical User's avatar CWA Technical User Committed by GitHub
Browse files

Protocol Buffer update for release 2.4.x at Tue May 25 15:35:30 UTC 2021 (#3274)

parent 310db328
No related branches found
No related tags found
No related merge requests found
......@@ -4,12 +4,26 @@ package de.rki.coronawarnapp.server.protocols.internal.dgc;
message ValueSets {
// General
// Disease or agent targeted
ValueSet tg = 4;
// Vaccination Certificates
// Vaccine or prophylaxis
ValueSet vp = 1;
// Vaccine medicinal product
ValueSet mp = 2;
// Marketing Authorization Holder
ValueSet ma = 3;
// Test Certificates
// Type of Test
ValueSet tcTt = 5;
// RAT Test name and manufacturer
ValueSet tcMa = 6;
// Test Result
ValueSet tcTr = 7;
}
message ValueSet {
......
// This file is auto-generated, DO NOT make any changes here
syntax = "proto3";
package de.rki.coronawarnapp.server.protocols.internal.stats;
import "internal/stats/key_figure_card.proto";
message LocalStatistics {
repeated FederalStateData federalStateData = 1;
repeated AdministrativeUnitData administrativeUnitData = 2;
}
message FederalStateData {
FederalState federalState = 1;
int64 updatedAt = 2;
SevenDayIncidenceData sevenDayIncidence = 3;
enum FederalState {
FEDERAL_STATE_BW = 0;
FEDERAL_STATE_BY = 1;
FEDERAL_STATE_BE = 2;
FEDERAL_STATE_BB = 3;
FEDERAL_STATE_HB = 4;
FEDERAL_STATE_HH = 5;
FEDERAL_STATE_HE = 6;
FEDERAL_STATE_MV = 7;
FEDERAL_STATE_NI = 8;
FEDERAL_STATE_NRW = 9;
FEDERAL_STATE_RP = 10;
FEDERAL_STATE_SL = 11;
FEDERAL_STATE_SN = 12;
FEDERAL_STATE_ST = 13;
FEDERAL_STATE_SH = 14;
FEDERAL_STATE_TH = 15;
}
}
message AdministrativeUnitData {
uint32 administrativeUnitShortId = 1;
int64 updatedAt = 2;
SevenDayIncidenceData sevenDayIncidence = 3;
}
message SevenDayIncidenceData {
double value = 1;
KeyFigure.Trend trend = 2;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment